@soddong/agentic-runtime 0.17.4 → 0.17.6
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 +13 -0
- package/README.md +13 -7
- package/dist/bundle-registry.js.map +1 -1
- package/dist/database.d.ts +3 -3
- package/dist/database.d.ts.map +1 -1
- package/dist/database.js +4 -4
- package/dist/database.js.map +1 -1
- package/dist/execution-projects.d.ts.map +1 -1
- package/dist/execution-projects.js +17 -1
- package/dist/execution-projects.js.map +1 -1
- package/dist/execution-query.js.map +1 -1
- package/dist/execution.js.map +1 -1
- package/dist/hook-record.js.map +1 -1
- package/dist/module-registry.js.map +1 -1
- package/dist/project-html.d.ts.map +1 -1
- package/dist/project-html.js +323 -11
- package/dist/project-html.js.map +1 -1
- package/dist/seed-importer.js.map +1 -1
- package/dist/sqlite.d.ts +24 -0
- package/dist/sqlite.d.ts.map +1 -0
- package/dist/sqlite.js +75 -0
- package/dist/sqlite.js.map +1 -0
- 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 +14 -8
- package/package.json +1 -5
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.6
|
|
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.6
|
|
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.6
|
|
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.6
|
|
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.6` |
|
|
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.6.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.6
|
|
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.6 \
|
|
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.6 --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.6
|
|
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.6
|
|
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.6 --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.6 --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.6
|
|
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.6 -->
|
|
167
167
|
...
|
|
168
168
|
<!-- agentic-runtime:end -->
|
|
169
169
|
```
|
|
@@ -581,10 +581,10 @@ npx agentic project create @soddong/agentic-methodology-ai-agent-sdlc
|
|
|
581
581
|
runtime을 프로젝트에 미리 설치하지 않고 바로 실행하려면 다음 명령을 사용합니다.
|
|
582
582
|
|
|
583
583
|
```bash
|
|
584
|
-
npx --yes --loglevel=error -p @soddong/agentic-runtime@0.17.
|
|
584
|
+
npx --yes --loglevel=error -p @soddong/agentic-runtime@0.17.6 agentic project create @soddong/agentic-methodology-ai-agent-sdlc
|
|
585
585
|
```
|
|
586
586
|
|
|
587
|
-
`--loglevel=error`는 npm 설치 과정의 warning 로그를 숨깁니다.
|
|
587
|
+
`--loglevel=error`는 npm 설치 과정의 일반 warning 로그를 숨깁니다. `0.17.6`부터 runtime은 Node 내장 `node:sqlite`를 사용하므로 `better-sqlite3` native addon 설치가 필요 없습니다. 오류가 발생하면 error 로그는 그대로 표시됩니다.
|
|
588
588
|
|
|
589
589
|
Windows PowerShell:
|
|
590
590
|
|
|
@@ -607,7 +607,13 @@ npx agentic project create @soddong/agentic-methodology-ai-agent-sdlc
|
|
|
607
607
|
10. `.agentic/reports/<project-code>.html` HTML report 생성
|
|
608
608
|
```
|
|
609
609
|
|
|
610
|
-
성공하면 마지막에 HTML report 경로가 출력됩니다. 이 HTML은 좌측에 Stage/Activity vertical stepper를 표시하고, 가운데에는 선택한 Activity의
|
|
610
|
+
성공하면 마지막에 HTML report 경로가 출력됩니다. 이 HTML은 좌측에 Stage/Activity vertical stepper를 표시하고, 가운데에는 선택한 Activity의 산출물 표준을 탭으로 표시합니다.
|
|
611
|
+
|
|
612
|
+
산출물 표준 탭은 다음 구성을 기본으로 합니다.
|
|
613
|
+
|
|
614
|
+
```text
|
|
615
|
+
개요 / 개념 / 서식 / 작성 기준 / 예시 / 검증 기준
|
|
616
|
+
```
|
|
611
617
|
|
|
612
618
|
methodology seed manifest가 `reportProfile`을 제공하면 report title, subtitle, navigation label, activity 상세 label, 빈 산출물 안내 문구, seed metadata 표시 여부를 bundle 기준으로 조정합니다. `reportProfile`이 없으면 runtime 기본 viewer 설정을 사용합니다.
|
|
613
619
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@soddong/agentic-runtime",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.6",
|
|
4
4
|
"description": "Agentic Platform local execution runtime and CLI",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"type": "module",
|
|
@@ -23,10 +23,6 @@
|
|
|
23
23
|
"typecheck": "tsc -p tsconfig.json --noEmit"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"better-sqlite3": "^12.11.1",
|
|
27
26
|
"@soddong/agentic-capability-agent-client": "^0.4.0"
|
|
28
|
-
},
|
|
29
|
-
"devDependencies": {
|
|
30
|
-
"@types/better-sqlite3": "^7.6.13"
|
|
31
27
|
}
|
|
32
28
|
}
|