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 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/*.mjs` install
58
- 8. `.env.example -> .env`
59
- 9. `pnpm install`
60
- 10. `app mode != backend`이면 Playwright/bootstrap
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.mjs`
68
- - `.agentic-dev/runtime/sync_project_tasks.mjs`
69
- - `.agentic-dev/runtime/run_multi_agent_queue.mjs`
70
- - `.agentic-dev/runtime/close_completed_tasks.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`
71
77
  - `.github/workflows/agentic-orchestration.yml`
72
78
 
73
- 즉 SDD planning 산출물이 push되면 workflow가 task IR 만들고, GitHub task mirror multi-agent queue를 갱신하는 구조다.
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,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":""}