@soddong/agentic-runtime 0.17.1 → 0.17.2
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/CHANGELOG.md +6 -0
- package/README.md +12 -4
- package/docs/build.md +1 -1
- package/docs/delivery.md +1 -1
- package/docs/operations.md +4 -4
- package/docs/publishing.md +6 -6
- package/docs/usage.md +13 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.17.2
|
|
4
|
+
|
|
5
|
+
- consumer one-command 실행 예시에 `npx --yes --loglevel=error -p @soddong/agentic-runtime@0.17.2 ...` 형식을 추가
|
|
6
|
+
- `better-sqlite3` 전이 의존성의 `prebuild-install` deprecated warning은 기능 실패가 아닌 npm 설치 경고임을 README/usage에 명시
|
|
7
|
+
- warning 로그를 줄이되 실제 error 로그는 유지하는 consumer 권장 실행 방식을 문서화
|
|
8
|
+
|
|
3
9
|
## 0.17.1
|
|
4
10
|
|
|
5
11
|
- `project create/status` 출력에서 Stage별 완료 현황을 `0/4 activities completed` 대신 `completed activities: 0 of 4` 형식으로 명확화
|
package/README.md
CHANGED
|
@@ -162,14 +162,14 @@ CLI는 consumer 프로젝트의 `node_modules`에서 package root를 찾고, 등
|
|
|
162
162
|
기본 registry는 공식 npm registry입니다.
|
|
163
163
|
|
|
164
164
|
```bash
|
|
165
|
-
npm install @soddong/agentic-runtime@0.17.
|
|
165
|
+
npm install @soddong/agentic-runtime@0.17.2
|
|
166
166
|
```
|
|
167
167
|
|
|
168
168
|
사용자 `~/.npmrc`에 별도 registry가 남아 있으면 공식 registry를 명시하거나 user config를 정리합니다.
|
|
169
169
|
|
|
170
170
|
```bash
|
|
171
171
|
npm config set registry https://registry.npmjs.org/ --location=user
|
|
172
|
-
npm install @soddong/agentic-runtime@0.17.
|
|
172
|
+
npm install @soddong/agentic-runtime@0.17.2 --registry=https://registry.npmjs.org/
|
|
173
173
|
```
|
|
174
174
|
|
|
175
175
|
publish 권한이 필요한 사용자는 `~/.npmrc`에 npm token을 설정합니다. token 실값은 문서, source, CI log에 기록하지 않습니다.
|
|
@@ -188,7 +188,7 @@ npx agentic --help
|
|
|
188
188
|
기대 결과:
|
|
189
189
|
|
|
190
190
|
```text
|
|
191
|
-
@soddong/agentic-runtime 0.17.
|
|
191
|
+
@soddong/agentic-runtime 0.17.2
|
|
192
192
|
```
|
|
193
193
|
|
|
194
194
|
## 프로젝트 초기화
|
|
@@ -238,7 +238,7 @@ npx agentic adapter install kiro
|
|
|
238
238
|
`.agentic/AGENTS.md`는 @soddong/agentic-runtime managed block으로 관리됩니다. `init`, `setup`, `adapter install` 실행 시 managed block의 runtime version을 확인하고, 기존 block version이 현재 runtime보다 낮으면 사용자 작성 영역은 유지한 채 managed block만 갱신합니다.
|
|
239
239
|
|
|
240
240
|
```md
|
|
241
|
-
<!-- agentic-runtime:start version=0.17.
|
|
241
|
+
<!-- agentic-runtime:start version=0.17.2 -->
|
|
242
242
|
...
|
|
243
243
|
<!-- agentic-runtime:end -->
|
|
244
244
|
```
|
|
@@ -558,6 +558,14 @@ consumer 프로젝트에서 methodology seed bundle을 적용하고 execution pr
|
|
|
558
558
|
npx agentic project create @soddong/agentic-methodology-ai-agent-sdlc
|
|
559
559
|
```
|
|
560
560
|
|
|
561
|
+
runtime을 프로젝트에 미리 설치하지 않고 바로 실행하려면 다음 명령을 사용합니다.
|
|
562
|
+
|
|
563
|
+
```bash
|
|
564
|
+
npx --yes --loglevel=error -p @soddong/agentic-runtime@0.17.2 agentic project create @soddong/agentic-methodology-ai-agent-sdlc
|
|
565
|
+
```
|
|
566
|
+
|
|
567
|
+
`--loglevel=error`는 npm 설치 과정의 warning 로그를 숨깁니다. 예를 들어 `better-sqlite3`의 전이 의존성인 `prebuild-install` deprecated warning은 현재 기능 실패가 아니라 npm 의존성 경고입니다. 오류가 발생하면 error 로그는 그대로 표시됩니다.
|
|
568
|
+
|
|
561
569
|
이 명령은 다음 단계를 자동으로 수행합니다.
|
|
562
570
|
|
|
563
571
|
```text
|
package/docs/build.md
CHANGED
package/docs/delivery.md
CHANGED
package/docs/operations.md
CHANGED
|
@@ -38,7 +38,7 @@ publish 권한이 없는 설치 사용자라면 `npm whoami`는 생략할 수
|
|
|
38
38
|
## 4. 설치
|
|
39
39
|
|
|
40
40
|
```bash
|
|
41
|
-
npm install @soddong/agentic-runtime@0.17.
|
|
41
|
+
npm install @soddong/agentic-runtime@0.17.2
|
|
42
42
|
```
|
|
43
43
|
|
|
44
44
|
## 5. 실행 확인
|
|
@@ -51,7 +51,7 @@ npx agentic --help
|
|
|
51
51
|
기대 결과:
|
|
52
52
|
|
|
53
53
|
```text
|
|
54
|
-
@soddong/agentic-runtime 0.17.
|
|
54
|
+
@soddong/agentic-runtime 0.17.2
|
|
55
55
|
```
|
|
56
56
|
|
|
57
57
|
## 6. Codex Adapter 확인
|
|
@@ -82,7 +82,7 @@ agentic-runtime-codex@agentic-sdlc
|
|
|
82
82
|
현재 공식 registry publish 기준 버전은 다음과 같습니다.
|
|
83
83
|
|
|
84
84
|
```text
|
|
85
|
-
@soddong/agentic-runtime 0.17.
|
|
85
|
+
@soddong/agentic-runtime 0.17.2
|
|
86
86
|
```
|
|
87
87
|
|
|
88
88
|
registry 상태는 다음 명령으로 확인합니다.
|
|
@@ -94,7 +94,7 @@ npm view @soddong/agentic-runtime version --registry=https://registry.npmjs.org/
|
|
|
94
94
|
기대 결과:
|
|
95
95
|
|
|
96
96
|
```text
|
|
97
|
-
0.17.
|
|
97
|
+
0.17.2
|
|
98
98
|
```
|
|
99
99
|
|
|
100
100
|
publish 전 검증 절차는 [publishing.md](./publishing.md)를 따릅니다.
|
package/docs/publishing.md
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
| 항목 | 기준 |
|
|
14
14
|
| --- | --- |
|
|
15
15
|
| package | `@soddong/agentic-runtime` |
|
|
16
|
-
| current version | `0.17.
|
|
16
|
+
| current version | `0.17.2` |
|
|
17
17
|
| binary | `agentic` |
|
|
18
18
|
| workspace | `packages/agentic-runtime` |
|
|
19
19
|
| publish registry | `https://registry.npmjs.org/` |
|
|
@@ -86,7 +86,7 @@ npm pack --workspace @soddong/agentic-runtime --cache "$env:TEMP\agentic-npm-cac
|
|
|
86
86
|
생성 예:
|
|
87
87
|
|
|
88
88
|
```text
|
|
89
|
-
soddong-agentic-runtime-0.17.
|
|
89
|
+
soddong-agentic-runtime-0.17.2.tgz
|
|
90
90
|
```
|
|
91
91
|
|
|
92
92
|
## 6. Publish
|
|
@@ -149,7 +149,7 @@ npm view @soddong/agentic-runtime bin --json --registry=https://registry.npmjs.o
|
|
|
149
149
|
기대 결과:
|
|
150
150
|
|
|
151
151
|
```text
|
|
152
|
-
0.17.
|
|
152
|
+
0.17.2
|
|
153
153
|
```
|
|
154
154
|
|
|
155
155
|
```json
|
|
@@ -170,7 +170,7 @@ rm -rf "$TEST_DIR"
|
|
|
170
170
|
mkdir -p "$TEST_DIR"
|
|
171
171
|
cd "$TEST_DIR"
|
|
172
172
|
npm init -y
|
|
173
|
-
npm install @soddong/agentic-runtime@0.17.
|
|
173
|
+
npm install @soddong/agentic-runtime@0.17.2 \
|
|
174
174
|
--registry=https://registry.npmjs.org/
|
|
175
175
|
npx agentic --version
|
|
176
176
|
npx agentic --help
|
|
@@ -184,7 +184,7 @@ Remove-Item -Recurse -Force $testDir -ErrorAction SilentlyContinue
|
|
|
184
184
|
New-Item -ItemType Directory -Path $testDir | Out-Null
|
|
185
185
|
Set-Location $testDir
|
|
186
186
|
npm init -y
|
|
187
|
-
npm install @soddong/agentic-runtime@0.17.
|
|
187
|
+
npm install @soddong/agentic-runtime@0.17.2 --registry=https://registry.npmjs.org/
|
|
188
188
|
npx agentic --version
|
|
189
189
|
npx agentic --help
|
|
190
190
|
```
|
|
@@ -192,5 +192,5 @@ npx agentic --help
|
|
|
192
192
|
기대 결과:
|
|
193
193
|
|
|
194
194
|
```text
|
|
195
|
-
@soddong/agentic-runtime 0.17.
|
|
195
|
+
@soddong/agentic-runtime 0.17.2
|
|
196
196
|
```
|
package/docs/usage.md
CHANGED
|
@@ -36,19 +36,19 @@ npm config set registry https://registry.npmjs.org/ --location=user
|
|
|
36
36
|
```
|
|
37
37
|
|
|
38
38
|
```bash
|
|
39
|
-
npm install @soddong/agentic-runtime@0.17.
|
|
39
|
+
npm install @soddong/agentic-runtime@0.17.2
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
registry를 명시해야 하는 경우:
|
|
43
43
|
|
|
44
44
|
```bash
|
|
45
|
-
npm install @soddong/agentic-runtime@0.17.
|
|
45
|
+
npm install @soddong/agentic-runtime@0.17.2 --registry=https://registry.npmjs.org/
|
|
46
46
|
```
|
|
47
47
|
|
|
48
48
|
Windows PowerShell:
|
|
49
49
|
|
|
50
50
|
```powershell
|
|
51
|
-
npm install @soddong/agentic-runtime@0.17.
|
|
51
|
+
npm install @soddong/agentic-runtime@0.17.2 --registry=https://registry.npmjs.org/
|
|
52
52
|
```
|
|
53
53
|
|
|
54
54
|
## 4. 실행 확인
|
|
@@ -68,7 +68,7 @@ npx agentic --help
|
|
|
68
68
|
기대 결과:
|
|
69
69
|
|
|
70
70
|
```text
|
|
71
|
-
@soddong/agentic-runtime 0.17.
|
|
71
|
+
@soddong/agentic-runtime 0.17.2
|
|
72
72
|
```
|
|
73
73
|
|
|
74
74
|
## 5. 현재 지원 명령
|
|
@@ -163,7 +163,7 @@ npx agentic adapter install kiro
|
|
|
163
163
|
`.agentic/AGENTS.md`는 @soddong/agentic-runtime managed block으로 관리됩니다.
|
|
164
164
|
|
|
165
165
|
```md
|
|
166
|
-
<!-- agentic-runtime:start version=0.17.
|
|
166
|
+
<!-- agentic-runtime:start version=0.17.2 -->
|
|
167
167
|
...
|
|
168
168
|
<!-- agentic-runtime:end -->
|
|
169
169
|
```
|
|
@@ -578,6 +578,14 @@ consumer 프로젝트에서 methodology seed bundle을 설치, 적용하고 exec
|
|
|
578
578
|
npx agentic project create @soddong/agentic-methodology-ai-agent-sdlc
|
|
579
579
|
```
|
|
580
580
|
|
|
581
|
+
runtime을 프로젝트에 미리 설치하지 않고 바로 실행하려면 다음 명령을 사용합니다.
|
|
582
|
+
|
|
583
|
+
```bash
|
|
584
|
+
npx --yes --loglevel=error -p @soddong/agentic-runtime@0.17.2 agentic project create @soddong/agentic-methodology-ai-agent-sdlc
|
|
585
|
+
```
|
|
586
|
+
|
|
587
|
+
`--loglevel=error`는 npm 설치 과정의 warning 로그를 숨깁니다. 예를 들어 `better-sqlite3`의 전이 의존성인 `prebuild-install` deprecated warning은 현재 기능 실패가 아니라 npm 의존성 경고입니다. 오류가 발생하면 error 로그는 그대로 표시됩니다.
|
|
588
|
+
|
|
581
589
|
Windows PowerShell:
|
|
582
590
|
|
|
583
591
|
```powershell
|