@su-record/vibe 1.0.6 → 1.0.7

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/bin/vibe CHANGED
@@ -577,12 +577,6 @@ async function init(projectName) {
577
577
  );
578
578
  }
579
579
 
580
- // 날짜 업데이트
581
- const today = new Date().toISOString().split('T')[0];
582
- constitution = constitution.replace('{날짜}', today);
583
- constitution = constitution.replace('{이름}', 'vibe init');
584
- constitution = constitution.replace('토큰 유효 기간: {기간}', '토큰 유효 기간: 1시간');
585
-
586
580
  fs.writeFileSync(constitutionPath, constitution);
587
581
  }
588
582
 
@@ -941,11 +935,6 @@ async function update() {
941
935
  stackDetails.cicd.length > 0 ? `- CI/CD: ${stackDetails.cicd.join(', ')}` : '- CI/CD: (프로젝트에 맞게 설정)'
942
936
  );
943
937
 
944
- const today = new Date().toISOString().split('T')[0];
945
- constitution = constitution.replace('{날짜}', today);
946
- constitution = constitution.replace('{이름}', 'vibe update');
947
- constitution = constitution.replace('토큰 유효 기간: {기간}', '토큰 유효 기간: 1시간');
948
-
949
938
  fs.writeFileSync(constitutionPath, constitution);
950
939
  log(' ✅ constitution.md 업데이트 완료\n');
951
940
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@su-record/vibe",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "Vibe - Claude Code exclusive SPEC-driven AI coding framework",
5
5
  "bin": {
6
6
  "vibe": "./bin/vibe"
@@ -159,7 +159,6 @@ chore: 빌드, 설정 변경
159
159
 
160
160
  ### 인증
161
161
  - JWT 기반 인증
162
- - 토큰 유효 기간: {기간}
163
162
  - Refresh 토큰 사용
164
163
 
165
164
  ### 권한
@@ -183,11 +182,3 @@ chore: 빌드, 설정 변경
183
182
  - Uptime: 99.9%
184
183
  - RTO: 1시간
185
184
  - RPO: 15분
186
-
187
- ---
188
-
189
- ## 10. 변경 이력
190
-
191
- | 날짜 | 변경 내용 | 작성자 |
192
- |------|-----------|--------|
193
- | {날짜} | 문서 생성 | {이름} |