agentic-dev 0.2.17 → 0.2.19
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 +43 -3
- package/dist/bin/agentic-dev.js +510 -129
- package/dist/bin/agentic-dev.js.map +1 -1
- package/dist/lib/orchestration-assets.d.ts.map +1 -1
- package/dist/lib/orchestration-assets.js +134 -15
- package/dist/lib/orchestration-assets.js.map +1 -1
- package/dist/lib/scaffold.js +4 -4
- package/dist/lib/scaffold.js.map +1 -1
- package/dist/lib/types.d.ts +1 -1
- package/dist/lib/types.d.ts.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -19,7 +19,26 @@
|
|
|
19
19
|
npx agentic-dev
|
|
20
20
|
```
|
|
21
21
|
|
|
22
|
-
|
|
22
|
+
기본 명령은 설치기가 아니라 dashboard TUI다. 현재 레포의 `.agentic-dev` 상태, 설치된 에이전트, GitHub task mirror, queue/execution 상태를 풀스크린으로 보여주고 로컬 orchestration 액션을 실행할 수 있다.
|
|
23
|
+
|
|
24
|
+
- `←/→`: tab 전환
|
|
25
|
+
- `↑/↓`: 현재 리스트 이동
|
|
26
|
+
- `r`: refresh
|
|
27
|
+
- `i`: task IR 생성
|
|
28
|
+
- `t`: GitHub task sync
|
|
29
|
+
- `p`: queue plan
|
|
30
|
+
- `d`: dispatch build
|
|
31
|
+
- `e`: dispatch execute
|
|
32
|
+
- `c`: close pass
|
|
33
|
+
- `q`: 종료
|
|
34
|
+
|
|
35
|
+
설치는 명시적으로 아래처럼 시작한다.
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
npx agentic-dev init
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
`init` wizard는 아래 정보를 모두 먼저 받는다.
|
|
23
42
|
|
|
24
43
|
- project directory
|
|
25
44
|
- project name
|
|
@@ -28,7 +47,7 @@ wizard는 아래 정보를 모두 먼저 받는다.
|
|
|
28
47
|
- GitHub project mode
|
|
29
48
|
- GitHub project title
|
|
30
49
|
- template repo
|
|
31
|
-
- AI
|
|
50
|
+
- AI execution adapters
|
|
32
51
|
- workspace agent surfaces
|
|
33
52
|
- non-empty directory 진행 여부
|
|
34
53
|
- final confirmation
|
|
@@ -44,6 +63,8 @@ wizard는 아래 정보를 모두 먼저 받는다.
|
|
|
44
63
|
|
|
45
64
|
- 모든 입력이 끝나기 전에는 clone/install/bootstrap을 실행하지 않는다.
|
|
46
65
|
- 최종 확인 뒤에만 GitHub repo/project, template install, workflow wiring을 실행한다.
|
|
66
|
+
- TUI는 terminal alternate screen을 사용하므로 화면이 한 줄씩 밀리지 않는다.
|
|
67
|
+
- 설치가 끝나면 TUI는 종료되고 요약만 일반 터미널에 남긴다.
|
|
47
68
|
|
|
48
69
|
## After Confirm
|
|
49
70
|
|
|
@@ -99,7 +120,26 @@ npx agentic-dev init my-app \
|
|
|
99
120
|
--github-repo say828/my-app \
|
|
100
121
|
--github-project-title "My App Delivery" \
|
|
101
122
|
--github-project-mode create-if-missing \
|
|
102
|
-
--provider-profiles codex-
|
|
123
|
+
--provider-profiles codex-cli,openai-api \
|
|
103
124
|
--providers codex,claude \
|
|
104
125
|
--yes
|
|
105
126
|
```
|
|
127
|
+
|
|
128
|
+
## AI Execution Adapters
|
|
129
|
+
|
|
130
|
+
현재 프로파일은 실제 실행 adapter 기준이다.
|
|
131
|
+
|
|
132
|
+
- `codex-cli`
|
|
133
|
+
- 로컬 `codex` CLI 세션을 사용한다.
|
|
134
|
+
- `openai-api`
|
|
135
|
+
- `OPENAI_API_KEY`로 OpenAI Responses API를 직접 호출한다.
|
|
136
|
+
- `claude-cli`
|
|
137
|
+
- 로컬 `claude` CLI 세션을 사용한다.
|
|
138
|
+
- `anthropic-api`
|
|
139
|
+
- `ANTHROPIC_API_KEY`로 Anthropic Messages API를 직접 호출한다.
|
|
140
|
+
- `ollama-self-hosted`
|
|
141
|
+
- 로컬 `ollama` 서버를 사용한다.
|
|
142
|
+
|
|
143
|
+
legacy 값인 `codex-subscription`, `codex-api`, `claude-subscription`, `claude-api`는 내부에서 각각 `codex-cli`, `openai-api`, `claude-cli`, `anthropic-api`로 정규화된다.
|
|
144
|
+
|
|
145
|
+
즉 `codex-api`는 별도 독립 adapter가 아니고, OpenAI API 계열 direct adapter인 `openai-api`로 흡수된다.
|