@soddong/agentic-application-methodology-workbench 0.1.2 → 0.1.3

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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.3
4
+
5
+ - Recalculate methodology tree metadata widths after managed ID badge rendering.
6
+ - Increase spacing between hierarchy ID badges and right-side count or mode labels.
7
+ - Fix hierarchy badge widths per level so labels do not visually collide with adjacent metadata.
8
+
3
9
  ## 0.1.2
4
10
 
5
11
  - Add managed ID fields to methodology tree ViewModels.
package/README.md CHANGED
@@ -9,7 +9,7 @@ Platform은 Workbench server, UI shell, config contract를 제공한다. 개별
9
9
  Published package를 사용하는 consumer project에서는 다음과 같이 설치한다.
10
10
 
11
11
  ```bash
12
- npm install @soddong/agentic-application-methodology-workbench@0.1.2
12
+ npm install @soddong/agentic-application-methodology-workbench@0.1.3
13
13
  ```
14
14
 
15
15
  workspace에서 개발 중인 경우에는 다음 명령을 사용한다.
@@ -115,7 +115,7 @@ smoke test는 API/ViewModel, HTML shell, CSS/JS 계약을 확인한다. 브라
115
115
  public npm publish 후에는 깨끗한 consumer project에서 registry install, package import, CLI boot, health API를 확인한다.
116
116
 
117
117
  ```bash
118
- npm install @soddong/agentic-application-methodology-workbench@0.1.2
118
+ npm install @soddong/agentic-application-methodology-workbench@0.1.3
119
119
  node -e "import('@soddong/agentic-application-methodology-workbench').then((m)=>console.log(m.methodologyWorkbenchPackage.version))"
120
120
  npx agentic-methodology-workbench --project /path/to/methodology-seed-project
121
121
  curl -sS http://127.0.0.1:4783/api/health
package/dist/index.d.ts CHANGED
@@ -10,7 +10,7 @@ export type { ArtifactStandardDocumentMetricsVM, ArtifactStandardDocumentsVM, Ar
10
10
  export type { WorkbenchServer, WorkbenchServerOptions, WorkbenchServerStartResult } from "./server/workbench-server.js";
11
11
  export declare const methodologyWorkbenchPackage: {
12
12
  readonly name: "@soddong/agentic-application-methodology-workbench";
13
- readonly version: "0.1.2";
13
+ readonly version: "0.1.3";
14
14
  readonly layer: "application";
15
15
  readonly purpose: "reusable-methodology-authoring-workbench";
16
16
  };
package/dist/index.js CHANGED
@@ -5,7 +5,7 @@ export { loadArtifactStandardDocuments, markdownToHtml } from "./artifact-standa
5
5
  export { scaffoldTaskAuthoringSource } from "./task-authoring-source.js";
6
6
  export const methodologyWorkbenchPackage = {
7
7
  name: "@soddong/agentic-application-methodology-workbench",
8
- version: "0.1.2",
8
+ version: "0.1.3",
9
9
  layer: "application",
10
10
  purpose: "reusable-methodology-authoring-workbench"
11
11
  };
@@ -40,7 +40,7 @@ async function routeRequest(request, project) {
40
40
  return jsonPayload({
41
41
  status: "ok",
42
42
  packageName: "@soddong/agentic-application-methodology-workbench",
43
- version: "0.1.2",
43
+ version: "0.1.3",
44
44
  projectRoot: project.projectRoot
45
45
  });
46
46
  }
@@ -328,15 +328,15 @@ h2 { font-size: 20px; line-height: 1.3; }
328
328
  .phase-tab.active { margin-bottom: -1px; border-color: #9fb3bf; background: rgba(255,255,255,0.88); color: #0f2530; box-shadow: 0 -1px 0 rgba(255,255,255,0.8) inset; }
329
329
  .methodology-tree { display: grid; align-content: start; gap: 3px; min-height: 0; overflow: auto; padding: 9px 8px 10px 8px; }
330
330
  .tree-group { position: relative; display: grid; gap: 2px; padding-bottom: 4px; }
331
- .tree-node { --meta-width: 92px; position: relative; width: 100%; max-width: 100%; display: grid; grid-template-columns: 18px minmax(0, 1fr) var(--meta-width); align-items: center; gap: 8px; border: 1px solid transparent; border-radius: var(--radius-md); background: transparent; color: var(--text); text-align: left; min-height: 42px; padding: 8px 9px; transition: background 120ms ease, border-color 120ms ease, box-shadow 120ms ease; }
331
+ .tree-node { --meta-width: 92px; --kind-badge-width: 38px; position: relative; width: 100%; max-width: 100%; display: grid; grid-template-columns: 18px minmax(0, 1fr) var(--meta-width); align-items: center; column-gap: 9px; border: 1px solid transparent; border-radius: var(--radius-md); background: transparent; color: var(--text); text-align: left; min-height: 42px; padding: 8px 9px; transition: background 120ms ease, border-color 120ms ease, box-shadow 120ms ease; }
332
332
  .tree-node.no-order { grid-template-columns: 18px minmax(0, 1fr) var(--meta-width); }
333
333
  .tree-node:hover { border-color: #c7d2df; background: rgba(255,255,255,0.78); }
334
334
  .tree-node.context { border-color: rgba(142, 173, 168, 0.42); background: linear-gradient(180deg, rgba(255,255,255,0.86) 0%, rgba(238,248,246,0.9) 100%); box-shadow: 0 1px 0 rgba(255,255,255,0.76) inset; }
335
335
  .tree-node.active { border-color: #8fb9b4; background: linear-gradient(180deg, #f0faf8 0%, #ddf1ee 100%); box-shadow: 0 1px 0 rgba(255,255,255,0.84) inset, 0 1px 4px rgba(15, 118, 110, 0.08); }
336
- .tree-node.stage { --meta-width: 262px; color: #111827; font-weight: 720; border-color: rgba(143,187,179,0.32); background: linear-gradient(180deg, rgba(255,255,255,0.74) 0%, rgba(240,248,247,0.82) 100%); }
337
- .tree-node.activity { --meta-width: 198px; margin-left: 14px; width: calc(100% - 14px); color: #243b53; font-weight: 650; border-color: rgba(158,185,223,0.28); background: rgba(255,255,255,0.42); }
338
- .tree-node.task { --meta-width: 196px; margin-left: 28px; width: calc(100% - 28px); color: #39495a; font-weight: 600; background: rgba(255,255,255,0.34); }
339
- .tree-node.step { --meta-width: 178px; margin-left: 42px; width: calc(100% - 42px); color: #5b6878; font-weight: 500; }
336
+ .tree-node.stage { --meta-width: 286px; --kind-badge-width: 68px; color: #111827; font-weight: 720; border-color: rgba(143,187,179,0.32); background: linear-gradient(180deg, rgba(255,255,255,0.74) 0%, rgba(240,248,247,0.82) 100%); }
337
+ .tree-node.activity { --meta-width: 224px; --kind-badge-width: 78px; margin-left: 14px; width: calc(100% - 14px); color: #243b53; font-weight: 650; border-color: rgba(158,185,223,0.28); background: rgba(255,255,255,0.42); }
338
+ .tree-node.task { --meta-width: 214px; --kind-badge-width: 94px; margin-left: 28px; width: calc(100% - 28px); color: #39495a; font-weight: 600; background: rgba(255,255,255,0.34); }
339
+ .tree-node.step { --meta-width: 210px; --kind-badge-width: 112px; margin-left: 42px; width: calc(100% - 42px); color: #5b6878; font-weight: 500; }
340
340
  .tree-caret { position: relative; display: inline-flex; flex: 0 0 18px; align-items: center; justify-content: center; width: 18px; height: 18px; border: 1px solid #b8c6d3; border-radius: 5px; background: #ffffff; color: #64748b; box-shadow: 0 1px 0 rgba(255,255,255,0.85) inset, 0 1px 2px rgba(15,23,42,0.06); font-size: 0; line-height: 0; }
341
341
  .tree-caret::before, .tree-caret::after { content: ""; position: absolute; left: 5px; right: 5px; top: 50%; height: 2px; border-radius: 999px; background: currentColor; transform: translateY(-50%); }
342
342
  .tree-caret::after { left: 50%; right: auto; top: 5px; bottom: 5px; width: 2px; height: auto; transform: translateX(-50%); }
@@ -348,12 +348,12 @@ h2 { font-size: 20px; line-height: 1.3; }
348
348
  .tree-label { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 15px; line-height: 1.25; font-weight: inherit; }
349
349
  .tree-node.stage .tree-label { font-size: 17px; }
350
350
  .tree-node.activity .tree-label { font-size: 16px; }
351
- .tree-meta-group { display: flex; align-items: center; justify-content: flex-end; gap: 5px; width: 100%; max-width: 100%; min-width: 0; overflow: hidden; }
351
+ .tree-meta-group { display: flex; align-items: center; justify-content: flex-end; gap: 9px; width: 100%; max-width: 100%; min-width: 0; overflow: hidden; }
352
352
  .tree-count { flex: 1 1 auto; min-width: 0; overflow: hidden; text-overflow: ellipsis; color: var(--muted); font-size: 10.5px; font-weight: 620; text-align: right; white-space: nowrap; }
353
353
  .tree-kind-badge, .tree-mode-chip, .tree-state-chip { display: inline-flex; align-items: center; justify-content: center; min-height: 21px; border-radius: 999px; border: 1px solid var(--border); padding: 2px 7px; font-size: 10.5px; font-weight: 680; line-height: 1; white-space: nowrap; }
354
354
  .tree-kind-badge { flex: 0 0 38px; min-width: 38px; }
355
355
  .tree-kind-badge.with-order { flex-basis: 58px; min-width: 58px; }
356
- .tree-kind-badge.with-id { flex: 0 0 auto; min-width: 0; max-width: 116px; overflow: hidden; text-overflow: ellipsis; }
356
+ .tree-kind-badge.with-id { flex: 0 0 var(--kind-badge-width); min-width: var(--kind-badge-width); max-width: var(--kind-badge-width); overflow: hidden; text-overflow: ellipsis; }
357
357
  .tree-mode-chip, .tree-state-chip { flex: 0 0 auto; }
358
358
  .tree-kind-badge.stage { border-color: #8fbbb3; background: #dff2ef; color: #175f58; }
359
359
  .tree-kind-badge.activity { border-color: #9eb9df; background: #e5effb; color: #28568a; }
package/docs/delivery.md CHANGED
@@ -4,7 +4,7 @@ Delivery 단위는 reusable application package다.
4
4
 
5
5
  Bundle/Seed project에는 Workbench package 자체를 복사하지 않고, config와 authoring source만 둔다.
6
6
 
7
- 현재 public npm delivery 기준 버전은 `@soddong/agentic-application-methodology-workbench@0.1.2`이다.
7
+ 현재 public npm delivery 기준 버전은 `@soddong/agentic-application-methodology-workbench@0.1.3`이다.
8
8
 
9
9
  ## Delivery Checklist
10
10
 
@@ -14,7 +14,7 @@ Bundle/Seed project에는 Workbench package 자체를 복사하지 않고, confi
14
14
  | typecheck | `npm run typecheck -w @soddong/agentic-application-methodology-workbench` 성공 |
15
15
  | seed project smoke | 실제 Bundle/Seed project root를 대상으로 `npm run smoke` 성공 |
16
16
  | npm registry metadata | `npm view @soddong/agentic-application-methodology-workbench version`이 published version을 반환 |
17
- | clean consumer install | 깨끗한 consumer project에서 `npm install @soddong/agentic-application-methodology-workbench@0.1.2` 성공 |
17
+ | clean consumer install | 깨끗한 consumer project에서 `npm install @soddong/agentic-application-methodology-workbench@0.1.3` 성공 |
18
18
  | CLI health | 설치된 package의 CLI server boot 후 `/api/health` 성공 |
19
19
  | mode contract | Bundle/Seed는 `authoring`, Execution project는 `execution` read-only 기준을 따른다. |
20
20
  | responsibility boundary | package에는 reusable UI/server/config contract만 포함하고 방법론별 seed/source는 Bundle/Seed project에 둔다. |
@@ -5,7 +5,7 @@
5
5
  consumer project에서 published package를 사용할 때는 다음 기준 버전을 설치한다.
6
6
 
7
7
  ```bash
8
- npm install @soddong/agentic-application-methodology-workbench@0.1.2
8
+ npm install @soddong/agentic-application-methodology-workbench@0.1.3
9
9
  ```
10
10
 
11
11
  ```bash
@@ -38,7 +38,7 @@ npm run smoke -w @soddong/agentic-application-methodology-workbench -- --project
38
38
  public npm registry 배포 후에는 깨끗한 consumer project에서 다음을 확인한다.
39
39
 
40
40
  ```bash
41
- npm install @soddong/agentic-application-methodology-workbench@0.1.2
41
+ npm install @soddong/agentic-application-methodology-workbench@0.1.3
42
42
  node -e "import('@soddong/agentic-application-methodology-workbench').then((m)=>console.log(m.methodologyWorkbenchPackage.version))"
43
43
  npx agentic-methodology-workbench --project <seed-project-root>
44
44
  curl -sS http://127.0.0.1:4783/api/health
@@ -1,6 +1,6 @@
1
1
  # Publishing
2
2
 
3
- 현재 public npm registry 기준 published version은 `0.1.2`이다.
3
+ 현재 public npm registry 기준 published version은 `0.1.3`이다.
4
4
 
5
5
  ```bash
6
6
  npm view @soddong/agentic-application-methodology-workbench version --registry https://registry.npmjs.org/
@@ -45,8 +45,8 @@ npm dist-tag ls @soddong/agentic-application-methodology-workbench --registry ht
45
45
 
46
46
  ```bash
47
47
  npm init -y
48
- npm install @soddong/agentic-application-methodology-workbench@0.1.2 --registry https://registry.npmjs.org/ --prefer-online
48
+ npm install @soddong/agentic-application-methodology-workbench@0.1.3 --registry https://registry.npmjs.org/ --prefer-online
49
49
  node -e "import('@soddong/agentic-application-methodology-workbench').then((m)=>console.log(m.methodologyWorkbenchPackage.version))"
50
50
  ```
51
51
 
52
- `0.1.0` 최초 publish 직후에는 dist-tag와 tarball은 존재했으나 metadata endpoint가 일시적으로 404를 반환해 일반 package spec 설치가 실패했다. `0.1.1` patch publish 후 `npm view`, 일반 install, import, CLI boot, health API가 정상화되었다. `0.1.2`는 methodology tree managed ID badge 표시를 반영한 patch version이다.
52
+ `0.1.0` 최초 publish 직후에는 dist-tag와 tarball은 존재했으나 metadata endpoint가 일시적으로 404를 반환해 일반 package spec 설치가 실패했다. `0.1.1` patch publish 후 `npm view`, 일반 install, import, CLI boot, health API가 정상화되었다. `0.1.2`는 methodology tree managed ID badge 표시를 반영한 patch version이다. `0.1.3`은 managed ID badge 확장 후 우측 메타 레이블 간격과 폭을 보정한 patch version이다.
package/docs/usage.md CHANGED
@@ -5,7 +5,7 @@
5
5
  consumer project에서 published package를 사용할 때는 먼저 package를 설치한다.
6
6
 
7
7
  ```bash
8
- npm install @soddong/agentic-application-methodology-workbench@0.1.2
8
+ npm install @soddong/agentic-application-methodology-workbench@0.1.3
9
9
  ```
10
10
 
11
11
  workspace 개발 환경에서는 다음과 같이 실행한다.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@soddong/agentic-application-methodology-workbench",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Reusable methodology authoring workbench for Agentic Platform seed bundle projects",
5
5
  "license": "UNLICENSED",
6
6
  "type": "module",