sanjang 0.3.4 → 0.3.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.
@@ -9,6 +9,7 @@ export interface Camp {
9
9
  description?: string;
10
10
  baseCommit?: string;
11
11
  parentBranch?: string;
12
+ lastAccessedAt?: string;
12
13
  }
13
14
  export interface DevConfig {
14
15
  command: string;
@@ -32,12 +33,17 @@ export interface PortsConfig {
32
33
  fe: PortRange;
33
34
  be: PortRange;
34
35
  }
36
+ export interface TestConfig {
37
+ command: string;
38
+ cwd?: string;
39
+ }
35
40
  export interface SanjangConfig {
36
41
  dev: DevConfig;
37
42
  setup: string | null;
38
43
  copyFiles: string[];
39
44
  backend: BackendConfig | null;
40
45
  ports: PortsConfig;
46
+ test: TestConfig | null;
41
47
  _autoDetected?: boolean;
42
48
  }
43
49
  export interface PortAllocation {
@@ -107,3 +113,22 @@ export type BroadcastMessage = {
107
113
  data?: unknown;
108
114
  };
109
115
  export type EventCallback = (event: BroadcastMessage) => void;
116
+ export interface ChangeReportFile {
117
+ path: string;
118
+ status: "수정" | "추가" | "삭제" | "새 파일";
119
+ category: "ui" | "api" | "config" | "test" | "docs" | "other";
120
+ }
121
+ export interface ChangeReportWarning {
122
+ type: "config" | "db" | "env" | "infra" | "security";
123
+ message: string;
124
+ file: string;
125
+ }
126
+ export interface ChangeReport {
127
+ files: ChangeReportFile[];
128
+ totalCount: number;
129
+ byCategory: Record<string, ChangeReportFile[]>;
130
+ warnings: ChangeReportWarning[];
131
+ summary: string | null;
132
+ humanDescription: string | null;
133
+ categoryDetails: Record<string, string[]> | null;
134
+ }
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.6",
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"