@elyun/bylane 1.7.0 → 1.9.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/CLAUDE.md CHANGED
@@ -45,6 +45,7 @@ node -e "import('./src/config.js').then(({loadConfig,getAgentModel})=>{const c=l
45
45
  orchestrator → issue-agent → code-agent → test-agent → commit-agent
46
46
  → pr-agent → review-agent → respond-agent → notify-agent
47
47
 
48
+ analyze-agent (독립: 프로젝트 분석 → .claude/instructions/ 생성)
48
49
  review-loop (독립: 5분 주기 review 요청 감지)
49
50
  respond-loop (독립: 5분 주기 리뷰 코멘트 감지)
50
51
  ```
@@ -71,7 +72,7 @@ respond-loop (독립: 5분 주기 리뷰 코멘트 감지)
71
72
  ## 에이전트 모델 설정
72
73
 
73
74
  `config.models` 객체에서 에이전트별 모델 지정. `getAgentModel(config, agentName)`으로 조회.
74
- 기본값: orchestrator/issue-agent/respond-agent → opus-4-6, code-agent/review-agent → sonnet-4-6, 나머지 → haiku-4-5.
75
+ 기본값: orchestrator/issue-agent/respond-agent/analyze-agent → opus-4-6, code-agent/review-agent → sonnet-4-6, 나머지 → haiku-4-5.
75
76
 
76
77
  ## 브랜치 네이밍 토큰
77
78
 
@@ -27,7 +27,8 @@ description: byLane 메인 커맨드. 자연어로 전체 개발 워크플로우
27
27
 
28
28
  ## 실행 흐름
29
29
 
30
- 첫 번째 인자가 서브커맨드인지 확인:
30
+ 첫 번째 인자가 서브커맨드인지 확인.
31
+ **반드시 아래 표의 "실행 스킬" 전체 이름을 Skill 도구에 전달한다. 서브커맨드 이름(analyze, setup 등)을 그대로 스킬 이름으로 사용하지 않는다.**
31
32
 
32
33
  | 서브커맨드 | 실행 스킬 |
33
34
  |---|---|
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elyun/bylane",
3
- "version": "1.7.0",
3
+ "version": "1.9.0",
4
4
  "description": "Frontend development harness for Claude Code",
5
5
  "type": "module",
6
6
  "bin": {
package/src/cli.js CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- import { cpSync, mkdirSync, symlinkSync, existsSync, readdirSync, copyFileSync, renameSync } from 'fs'
2
+ import { cpSync, mkdirSync, symlinkSync, existsSync, readdirSync, copyFileSync, renameSync, readFileSync } from 'fs'
3
3
  import { join, dirname } from 'path'
4
4
  import { fileURLToPath } from 'url'
5
5
  import { homedir } from 'os'
@@ -23,6 +23,12 @@ function backupAndCopy(src, dest, file, label) {
23
23
  const srcFile = join(src, file)
24
24
 
25
25
  if (existsSync(destFile)) {
26
+ const srcContent = readFileSync(srcFile)
27
+ const destContent = readFileSync(destFile)
28
+ if (srcContent.equals(destContent)) {
29
+ console.log(` = ${label}: ${file} (변경 없음, 건너뜀)`)
30
+ return
31
+ }
26
32
  const backupPath = `${destFile}.bak`
27
33
  renameSync(destFile, backupPath)
28
34
  copyFileSync(srcFile, destFile)
File without changes
File without changes
File without changes
File without changes