agentic-dev 0.2.14 → 0.2.16
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 +26 -10
- 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 +864 -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 -430
- 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
|
|
|
@@ -22,7 +24,7 @@ wizard는 아래 정보를 모두 먼저 받는다.
|
|
|
22
24
|
- project directory
|
|
23
25
|
- project name
|
|
24
26
|
- GitHub repository
|
|
25
|
-
- GitHub
|
|
27
|
+
- GitHub credential source
|
|
26
28
|
- GitHub project mode
|
|
27
29
|
- GitHub project title
|
|
28
30
|
- template repo
|
|
@@ -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/*.
|
|
58
|
-
8. `.agentic-dev/runtime/server.
|
|
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,29 @@ CLI는 이 순서로 동작한다.
|
|
|
65
67
|
설치된 repo는 아래 orchestration surface를 가진다.
|
|
66
68
|
|
|
67
69
|
- `sdd/02_plan/**` push
|
|
68
|
-
- `.agentic-dev/runtime/sdd_to_ir.
|
|
69
|
-
- `.agentic-dev/runtime/sync_project_tasks.
|
|
70
|
-
- `.agentic-dev/runtime/run_multi_agent_queue.
|
|
71
|
-
- `.agentic-dev/runtime/dispatch_agents.
|
|
72
|
-
- `.agentic-dev/runtime/
|
|
73
|
-
- `.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`
|
|
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를 처리하는 구조다.
|
|
80
|
+
|
|
81
|
+
## GitHub Credential Source
|
|
82
|
+
|
|
83
|
+
이 선택은 사용자 레포가 퍼블릭인지 프라이빗인지 묻는 단계가 아니다.
|
|
84
|
+
|
|
85
|
+
- `gh-session`
|
|
86
|
+
- 현재 머신의 `gh auth login` 세션을 GitHub repo/project orchestration에 사용한다.
|
|
87
|
+
- `env`
|
|
88
|
+
- `GH_TOKEN`, `GITHUB_TOKEN`, `AGENTIC_GITHUB_TOKEN`을 GitHub repo/project orchestration에 사용한다.
|
|
89
|
+
- `pat`
|
|
90
|
+
- 이번 실행에서만 붙여넣은 PAT를 GitHub repo/project orchestration에 사용한다.
|
|
91
|
+
|
|
92
|
+
모든 모드에서 템플릿 후보는 동일하게 `say828/template-*` 레포들이다.
|
|
77
93
|
|
|
78
94
|
## Non-interactive Example
|
|
79
95
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"agentic-dev.d.ts","sourceRoot":"","sources":["../../src/bin/agentic-dev.ts"],"names":[],"mappings":""}
|