agentic-dev 0.2.13 → 0.2.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +15 -9
- package/dist/bin/agentic-dev.d.ts +3 -0
- package/dist/bin/agentic-dev.d.ts.map +1 -0
- package/dist/bin/agentic-dev.js +854 -0
- package/dist/bin/agentic-dev.js.map +1 -0
- package/dist/lib/github.d.ts +27 -0
- package/dist/lib/github.d.ts.map +1 -0
- package/dist/lib/github.js +217 -0
- package/dist/lib/github.js.map +1 -0
- package/dist/lib/orchestration-assets.d.ts +6 -0
- package/dist/lib/orchestration-assets.d.ts.map +1 -0
- package/dist/lib/orchestration-assets.js +673 -0
- package/dist/lib/orchestration-assets.js.map +1 -0
- package/dist/lib/scaffold.d.ts +23 -0
- package/dist/lib/scaffold.d.ts.map +1 -0
- package/dist/lib/scaffold.js +502 -0
- package/dist/lib/scaffold.js.map +1 -0
- package/dist/lib/types.d.ts +106 -0
- package/dist/lib/types.d.ts.map +1 -0
- package/dist/lib/types.js +2 -0
- package/dist/lib/types.js.map +1 -0
- package/package.json +13 -6
- package/bin/agentic-dev.mjs +0 -1014
- package/lib/github.mjs +0 -246
- package/lib/orchestration-assets.mjs +0 -249
- package/lib/scaffold.mjs +0 -609
package/README.md
CHANGED
|
@@ -8,6 +8,8 @@
|
|
|
8
8
|
|
|
9
9
|
- template app/runtime payload: `say828/template-*`
|
|
10
10
|
- installer/orchestration logic: `agentic-dev`
|
|
11
|
+
- source-of-truth implementation: `src/**/*.ts`
|
|
12
|
+
- published CLI/runtime entry: `dist/**/*.js`
|
|
11
13
|
- shared sub-agent assets: `.agent`, `.claude`, `.codex`
|
|
12
14
|
- target repo workflow/runtime automation: install 시 target repo에 주입
|
|
13
15
|
|
|
@@ -54,23 +56,27 @@ CLI는 이 순서로 동작한다.
|
|
|
54
56
|
4. shared `.agent`, `.claude`, `.codex` asset install
|
|
55
57
|
5. `.agentic-dev/orchestration.json` / `.agentic-dev/setup.json` write
|
|
56
58
|
6. `.github/workflows/agentic-orchestration.yml` install
|
|
57
|
-
7. `.agentic-dev/runtime/*.
|
|
58
|
-
8. `.
|
|
59
|
-
9.
|
|
60
|
-
10. `
|
|
59
|
+
7. `.agentic-dev/runtime/*.ts` install
|
|
60
|
+
8. `.agentic-dev/runtime/server.ts` install
|
|
61
|
+
9. `.env.example -> .env`
|
|
62
|
+
10. `pnpm install`
|
|
63
|
+
11. `app mode != backend`이면 Playwright/bootstrap
|
|
61
64
|
|
|
62
65
|
## Workflow Contract
|
|
63
66
|
|
|
64
67
|
설치된 repo는 아래 orchestration surface를 가진다.
|
|
65
68
|
|
|
66
69
|
- `sdd/02_plan/**` push
|
|
67
|
-
- `.agentic-dev/runtime/sdd_to_ir.
|
|
68
|
-
- `.agentic-dev/runtime/sync_project_tasks.
|
|
69
|
-
- `.agentic-dev/runtime/run_multi_agent_queue.
|
|
70
|
-
- `.agentic-dev/runtime/
|
|
70
|
+
- `.agentic-dev/runtime/sdd_to_ir.ts`
|
|
71
|
+
- `.agentic-dev/runtime/sync_project_tasks.ts`
|
|
72
|
+
- `.agentic-dev/runtime/run_multi_agent_queue.ts`
|
|
73
|
+
- `.agentic-dev/runtime/dispatch_agents.ts`
|
|
74
|
+
- `.agentic-dev/runtime/dispatch_execute.ts`
|
|
75
|
+
- `.agentic-dev/runtime/close_completed_tasks.ts`
|
|
76
|
+
- `.agentic-dev/runtime/server.ts`
|
|
71
77
|
- `.github/workflows/agentic-orchestration.yml`
|
|
72
78
|
|
|
73
|
-
즉 SDD planning 산출물이 push되면 workflow가 task IR
|
|
79
|
+
즉 SDD planning 산출물이 push되면 workflow가 local orchestration server를 띄우고, 그 서버가 task IR, GitHub task mirror, multi-agent queue, dispatch plan, dispatch execution, close pass를 처리하는 구조다.
|
|
74
80
|
|
|
75
81
|
## Non-interactive Example
|
|
76
82
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"agentic-dev.d.ts","sourceRoot":"","sources":["../../src/bin/agentic-dev.ts"],"names":[],"mappings":""}
|