pubuilder 0.7.0 → 0.8.0

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
@@ -5,6 +5,16 @@
5
5
  버전은 [Semantic Versioning](https://semver.org/lang/ko/)을 따릅니다.
6
6
  (0.x 단계이므로 breaking change는 minor 버전으로 올립니다.)
7
7
 
8
+ ## [0.8.0] - 2026-07-16
9
+
10
+ ### Added
11
+
12
+ - **기본 퍼블리싱 스킬 번들** — 프레임워크 무관 `publish` 스킬을 패키지에 포함해
13
+ 기본 ON으로 제공(`builtin` 소스). 스킬함에서 토글로 끌 수 있다.
14
+ - **Design IR 전처리** — 컴패니언 서버가 raw Figma 노드 JSON 대신, 스타일 필드만
15
+ 추출하고 숨김 노드·노이즈를 제거한 컴팩트 Design IR + 색상 빈도표를 프롬프트에
16
+ 실어 입력 토큰을 대폭 절감한다(결정론적, LLM 토큰 0).
17
+
8
18
  ## [0.7.0] - 2026-07-15
9
19
 
10
20
  ### Added
@@ -83,6 +93,7 @@
83
93
  - `pubuilder scan` CLI — Next.js 라우트를 스캔해 `ia.config.ts` 생성/병합.
84
94
  - `PageMap` 미니맵 컴포넌트 — 화면설계서(IA) 기반 페이지 트리를 iframe 썸네일로 렌더링.
85
95
 
96
+ [0.8.0]: https://www.npmjs.com/package/pubuilder/v/0.8.0
86
97
  [0.7.0]: https://www.npmjs.com/package/pubuilder/v/0.7.0
87
98
  [0.6.0]: https://www.npmjs.com/package/pubuilder/v/0.6.0
88
99
  [0.5.0]: https://www.npmjs.com/package/pubuilder/v/0.5.0
package/dist/api.d.ts CHANGED
@@ -4,7 +4,7 @@ export interface SkillInfo {
4
4
  id: string;
5
5
  name: string;
6
6
  description: string;
7
- source: 'project' | 'global' | 'uploaded';
7
+ source: 'builtin' | 'project' | 'global' | 'uploaded';
8
8
  enabled: boolean;
9
9
  }
10
10
  export interface AgentEvent {