@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 +2 -1
- package/commands/bylane.md +2 -1
- package/package.json +1 -1
- package/src/cli.js +7 -1
- /package/skills/{analyze-agent.md → bylane-analyze-agent.md} +0 -0
- /package/skills/{code-agent.md → bylane-code-agent.md} +0 -0
- /package/skills/{commit-agent.md → bylane-commit-agent.md} +0 -0
- /package/skills/{issue-agent.md → bylane-issue-agent.md} +0 -0
- /package/skills/{notify-agent.md → bylane-notify-agent.md} +0 -0
- /package/skills/{orchestrator.md → bylane-orchestrator.md} +0 -0
- /package/skills/{pr-agent.md → bylane-pr-agent.md} +0 -0
- /package/skills/{respond-agent.md → bylane-respond-agent.md} +0 -0
- /package/skills/{respond-loop.md → bylane-respond-loop.md} +0 -0
- /package/skills/{review-agent.md → bylane-review-agent.md} +0 -0
- /package/skills/{review-loop.md → bylane-review-loop.md} +0 -0
- /package/skills/{setup.md → bylane-setup.md} +0 -0
- /package/skills/{test-agent.md → bylane-test-agent.md} +0 -0
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
|
|
package/commands/bylane.md
CHANGED
package/package.json
CHANGED
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|