sanjang 0.3.4 → 0.3.5

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.
@@ -107,3 +107,22 @@ export type BroadcastMessage = {
107
107
  data?: unknown;
108
108
  };
109
109
  export type EventCallback = (event: BroadcastMessage) => void;
110
+ export interface ChangeReportFile {
111
+ path: string;
112
+ status: "수정" | "추가" | "삭제" | "새 파일";
113
+ category: "ui" | "api" | "config" | "test" | "docs" | "other";
114
+ }
115
+ export interface ChangeReportWarning {
116
+ type: "config" | "db" | "env" | "infra" | "security";
117
+ message: string;
118
+ file: string;
119
+ }
120
+ export interface ChangeReport {
121
+ files: ChangeReportFile[];
122
+ totalCount: number;
123
+ byCategory: Record<string, ChangeReportFile[]>;
124
+ warnings: ChangeReportWarning[];
125
+ summary: string | null;
126
+ humanDescription: string | null;
127
+ categoryDetails: Record<string, string[]> | null;
128
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "sanjang",
3
- "version": "0.3.4",
4
- "description": "Local dev environment manager for vibe coders",
3
+ "version": "0.3.5",
4
+ "description": "AI dev environment for vibe coders — camp isolation, self-healing, smart PR",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "sanjang": "./dist/bin/sanjang.js"