agentic-dev 0.2.14 → 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 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,8 +56,8 @@ 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/*.mjs` install
58
- 8. `.agentic-dev/runtime/server.mjs` install
59
+ 7. `.agentic-dev/runtime/*.ts` install
60
+ 8. `.agentic-dev/runtime/server.ts` install
59
61
  9. `.env.example -> .env`
60
62
  10. `pnpm install`
61
63
  11. `app mode != backend`이면 Playwright/bootstrap
@@ -65,15 +67,16 @@ CLI는 이 순서로 동작한다.
65
67
  설치된 repo는 아래 orchestration surface를 가진다.
66
68
 
67
69
  - `sdd/02_plan/**` push
68
- - `.agentic-dev/runtime/sdd_to_ir.mjs`
69
- - `.agentic-dev/runtime/sync_project_tasks.mjs`
70
- - `.agentic-dev/runtime/run_multi_agent_queue.mjs`
71
- - `.agentic-dev/runtime/dispatch_agents.mjs`
72
- - `.agentic-dev/runtime/close_completed_tasks.mjs`
73
- - `.agentic-dev/runtime/server.mjs`
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`
74
77
  - `.github/workflows/agentic-orchestration.yml`
75
78
 
76
- 즉 SDD planning 산출물이 push되면 workflow가 local orchestration server를 띄우고, 그 서버가 task IR, GitHub task mirror, multi-agent queue, dispatch plan, close pass를 처리하는 구조다.
79
+ 즉 SDD planning 산출물이 push되면 workflow가 local orchestration server를 띄우고, 그 서버가 task IR, GitHub task mirror, multi-agent queue, dispatch plan, dispatch execution, close pass를 처리하는 구조다.
77
80
 
78
81
  ## Non-interactive Example
79
82
 
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ export {};
3
+ //# sourceMappingURL=agentic-dev.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"agentic-dev.d.ts","sourceRoot":"","sources":["../../src/bin/agentic-dev.ts"],"names":[],"mappings":""}