binary-agents 1.0.21 β 1.1.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/README.md +2 -2
- package/bin/cli.js +2 -2
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -22,8 +22,8 @@ npx binary-agents list
|
|
|
22
22
|
π€ Binary Agents μ€μΉ
|
|
23
23
|
|
|
24
24
|
? μ΄λμ μ€μΉνμκ² μ΅λκΉ?
|
|
25
|
-
β―
|
|
26
|
-
|
|
25
|
+
β― μ μ (~/.claude/)
|
|
26
|
+
νμ¬ νλ‘μ νΈ (.claude/)
|
|
27
27
|
|
|
28
28
|
? 무μμ μ€μΉνμκ² μ΅λκΉ?
|
|
29
29
|
β― λͺ¨λ (μμ΄μ νΈ + λͺ
λ Ήμ΄)
|
package/bin/cli.js
CHANGED
|
@@ -27,8 +27,8 @@ async function main() {
|
|
|
27
27
|
const location = await select({
|
|
28
28
|
message: 'μ΄λμ μ€μΉνμκ² μ΅λκΉ?',
|
|
29
29
|
choices: [
|
|
30
|
-
{ name: '
|
|
31
|
-
{ name: '
|
|
30
|
+
{ name: 'μ μ (~/.claude/)', value: 'global' },
|
|
31
|
+
{ name: 'νμ¬ νλ‘μ νΈ (.claude/)', value: 'local' }
|
|
32
32
|
]
|
|
33
33
|
});
|
|
34
34
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "binary-agents",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Claude Code subagents and slash commands collection with sync CLI tool",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/sync.js",
|
|
@@ -10,7 +10,9 @@
|
|
|
10
10
|
"scripts": {
|
|
11
11
|
"start": "node bin/cli.js",
|
|
12
12
|
"list": "node bin/cli.js list",
|
|
13
|
-
"release": "npm version patch && npm publish"
|
|
13
|
+
"release": "npm version patch && npm publish",
|
|
14
|
+
"release:minor": "npm version minor && npm publish",
|
|
15
|
+
"release:major": "npm version major && npm publish"
|
|
14
16
|
},
|
|
15
17
|
"keywords": [
|
|
16
18
|
"claude",
|