-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbacklog.json
More file actions
217 lines (217 loc) · 8.43 KB
/
Copy pathbacklog.json
File metadata and controls
217 lines (217 loc) · 8.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
{
"version": 1,
"paused": false,
"project": "ai-dev-toolkit",
"repository": "https://github.com/LucasSantana-Dev/forgekit",
"tasks": [
{
"id": "hooks-manifest",
"title": "Portable hook manifest (kit/core/hooks.json)",
"description": "Create a tool-agnostic hook definition format that adapters translate into each tool's native hook system. Covers PreToolUse, PostToolUse, SessionStart, SessionEnd. Inspired by claw-code's hook execution pipeline.\n\nScope: kit/core/hooks.json (new), kit/adapters/*.sh (update to install hooks)\nTest: Add validateKit() checks for hook schema validity.",
"priority": "high",
"status": "done",
"tags": [
"governance",
"hooks",
"cross-tool"
],
"dependsOn": null,
"completedAt": 1776672000000
},
{
"id": "agent-tool-access",
"title": "Per-agent tool access control in agents.json",
"description": "Define which tools each agent tier can use. Prevents expensive opus agents from doing cheap grep work. Adds a 'tools' allowlist per agent in agents.json.\n\nScope: kit/core/agents.json (update)\nTest: Validate tool references exist in a tool registry.",
"priority": "high",
"status": "done",
"tags": [
"governance",
"routing",
"cost-control"
],
"dependsOn": null,
"completedAt": 1776672000000
},
{
"id": "cost-tracking",
"title": "Cost tracking config and session budget limits",
"description": "Add cost awareness to token-optimization.json: per-session budget caps, per-agent cost limits, cost report format. Inspired by claw-code's cost_tracker.py and costHook.py.\n\nScope: kit/core/token-optimization.json (update), kit/core/skills/cost.md (new skill)\nTest: Validate cost config structure.",
"priority": "high",
"status": "done",
"tags": [
"cost-control",
"token-optimization"
],
"dependsOn": null,
"completedAt": 1776672000000
},
{
"id": "dispatch-skill",
"title": "Create dispatch skill for spawning subtasks",
"description": "Skill for breaking work into parallel subtasks, assigning to worker agents, and collecting results. Maps to claw-code's Task*/Team* tool pattern but as a portable skill.\n\nScope: kit/core/skills/dispatch.md (new)\nTest: Validate skill frontmatter.",
"priority": "high",
"status": "done",
"tags": [
"orchestration",
"skills"
],
"dependsOn": null,
"completedAt": 1776672000000
},
{
"id": "schedule-skill",
"title": "Create schedule skill for recurring automated runs",
"description": "Skill for defining recurring agent tasks (cron-like). Covers CI monitoring, dependency updates, security scans on schedule. Inspired by claw-code's ScheduleCronTool.\n\nScope: kit/core/skills/schedule.md (new)\nTest: Validate skill frontmatter.",
"priority": "medium",
"status": "done",
"tags": [
"automation",
"skills"
],
"dependsOn": null,
"completedAt": 1776672000000
},
{
"id": "merge-pr-24",
"title": "Review and merge PR #24 (autonomous loop + skills)",
"description": "Wait for CI, address any review comments, merge the feature/oh-my-compat-adapters branch into main.\n\nURL: https://github.com/LucasSantana-Dev/forgekit/pull/24",
"priority": "critical",
"status": "done",
"tags": [
"ship",
"pr"
],
"dependsOn": null,
"completedAt": 1775199807000
},
{
"id": "release-v0-11",
"title": "Release v0.11.0 after PR #24 merge",
"description": "Promote CHANGELOG [Unreleased] to v0.11.0, bump package.json, tag, create GitHub release.\n\nScope: CHANGELOG.md, package.json, git tag",
"priority": "high",
"status": "done",
"tags": [
"release"
],
"dependsOn": "merge-pr-24",
"completedAt": 1775220968000
},
{
"id": "mcp-tool-registry",
"title": "Expand kit/core/mcp.json with recommended MCP servers per tool",
"description": "Current mcp.json is minimal. Add recommended servers (filesystem, git, fetch, context7, sequential-thinking) with per-tool enable/disable guidance.\n\nScope: kit/core/mcp.json (update), adapters (update MCP merge logic)",
"priority": "medium",
"status": "done",
"tags": [
"mcp",
"cross-tool"
],
"dependsOn": null,
"completedAt": 1776672000000
},
{
"id": "memory-skill",
"title": "Create memory skill for cross-session persistence",
"description": "Skill for syncing decisions, preferences, and project state to persistent memory. Covers what to remember, where to store it, and how to recall it.\n\nScope: kit/core/skills/memory.md (new)",
"priority": "medium",
"status": "done",
"tags": [
"memory",
"skills"
],
"dependsOn": null,
"completedAt": 1776672000000
},
{
"id": "parity-audit-script",
"title": "Create parity audit script comparing kit/core capabilities across tools",
"description": "Inspired by claw-code's PARITY.md \u2014 a script that audits which features each tool adapter actually supports vs what kit/core defines. Produces a gap report.\n\nScope: scripts/parity-audit.js (new), test (new)",
"priority": "medium",
"status": "done",
"tags": [
"governance",
"quality"
],
"dependsOn": null,
"completedAt": 1776672000000
},
{
"id": "json-schemas",
"title": "Formal JSON schemas for all kit/core configs",
"description": "Create JSON Schema files for agents.json, routing.json, autopilot.json, loop.json, token-optimization.json, hooks.json. Enable IDE validation and CI enforcement.\n\nScope: kit/schema/*.schema.json (new), scripts/validate-schemas.js (update)",
"priority": "medium",
"status": "done",
"tags": [
"governance",
"dx"
],
"dependsOn": null
},
{
"id": "plugin-system",
"title": "Design portable plugin system for kit extensions",
"description": "Allow third-party skills, hooks, and tool configs to be installed via forge-kit. Inspired by claw-code's plugin lifecycle and oh-my-openagent's plugin model.\n\nScope: kit/plugins/ (new directory), kit/install.sh (update), design doc",
"priority": "low",
"status": "backlog",
"tags": [
"architecture",
"extensibility"
],
"dependsOn": "hooks-manifest"
},
{
"id": "cursor-windsurf-skill-format",
"title": "Document skill format differences for Cursor and Windsurf",
"description": "Cursor uses .mdc rules format, Windsurf uses .windsurfrules. Document how kit/core/skills/*.md map to each tool's native skill/rule format and update adapters if needed.\n\nScope: implementations/cursor/README.md, implementations/ (new windsurf/README.md)",
"priority": "low",
"status": "done",
"tags": [
"docs",
"cross-tool"
],
"dependsOn": null,
"completedAt": 1776672000000
},
{
"id": "antigravity-impl",
"title": "Create implementations/antigravity/ reference guide",
"description": "Antigravity adapter exists but has no reference implementation docs. Create setup guide similar to claude-code/codex/opencode.\n\nScope: implementations/antigravity/ (new directory + README.md)",
"priority": "low",
"status": "done",
"tags": [
"docs",
"antigravity"
],
"dependsOn": null,
"completedAt": 1776672000000
},
{
"id": "rag-kit",
"title": "Add local RAG engine kit",
"description": "Add kit/rag with SQLite-backed MiniLM embeddings, BM25 + RRF retrieval, optional reranker, MCP server, hooks, context-pack, and weekly drift reporting.",
"priority": "high",
"status": "done",
"tags": [
"rag",
"ai-engineering",
"tooling"
],
"dependsOn": null,
"completedAt": 1776261600000
},
{
"id": "specs-kit",
"title": "Add Agent-OS-inspired specs kit",
"description": "Add kit/specs with per-feature docs/specs frontmatter, tasks.md lifecycle, shipped archive flow, and generated per-repo plus cross-repo roadmap views.",
"priority": "high",
"status": "done",
"tags": [
"specs",
"roadmap",
"tooling"
],
"dependsOn": null,
"completedAt": 1776261600000
}
]
}