Skip to content

Commit 2c1052b

Browse files
authored
Merge pull request #369 from borealBytes/feat/timesfm-forecasting-skill
feat(skill): ship first-party timesfm-forecasting Agent Skill (agentskills.io)
2 parents a3beaa8 + 5aad77b commit 2c1052b

29 files changed

+17138
-0
lines changed

.gitattributes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Git LFS tracking for binary outputs in timesfm-forecasting skill
2+
timesfm-forecasting/**/*.png filter=lfs diff=lfs merge=lfs -text
3+
timesfm-forecasting/**/*.gif filter=lfs diff=lfs merge=lfs -text

AGENTS.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# TimesFM — Agent Entry Point
2+
3+
This repository ships a first-party **Agent Skill** for TimesFM at:
4+
5+
```
6+
timesfm-forecasting/
7+
└── SKILL.md ← read this for the full skill
8+
```
9+
10+
## Install the skill
11+
12+
Copy the skill directory into your agent's skills folder:
13+
14+
```bash
15+
# Cursor / Claude Code / OpenCode / Codex (global install)
16+
cp -r timesfm-forecasting/ ~/.cursor/skills/
17+
cp -r timesfm-forecasting/ ~/.claude/skills/
18+
19+
# Or project-level
20+
cp -r timesfm-forecasting/ .cursor/skills/
21+
```
22+
23+
Any agent that supports the open [Agent Skills standard](https://agentskills.io) will discover it automatically.
24+
25+
## Working in this repo
26+
27+
If you are developing TimesFM itself (not using it), the source lives in `src/timesfm/`.
28+
Archived v1/v2 code and notebooks are in `v1/`.
29+
30+
Run tests:
31+
32+
```bash
33+
pytest v1/tests/
34+
```
35+
36+
See `README.md` for full developer setup.

0 commit comments

Comments
 (0)