juno-code 1.0.15 → 1.0.19
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/dist/bin/cli.js +7592 -4586
- package/dist/bin/cli.js.map +1 -1
- package/dist/bin/cli.mjs +7591 -4586
- package/dist/bin/cli.mjs.map +1 -1
- package/dist/index.js +43 -15
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +43 -15
- package/dist/index.mjs.map +1 -1
- package/dist/templates/scripts/kanban.sh +160 -6
- package/dist/templates/services/README.md +271 -0
- package/dist/templates/services/claude.py +397 -0
- package/dist/templates/services/codex.py +268 -0
- package/package.json +73 -8
package/package.json
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "juno-code",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.0.19",
|
|
4
|
+
"description": "TypeScript CLI tool for AI subagent orchestration with code automation",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
7
|
-
"code",
|
|
8
7
|
"cli",
|
|
9
8
|
"typescript",
|
|
10
9
|
"mcp",
|
|
@@ -13,9 +12,7 @@
|
|
|
13
12
|
"claude",
|
|
14
13
|
"cursor",
|
|
15
14
|
"codex",
|
|
16
|
-
"gemini"
|
|
17
|
-
"orchestration",
|
|
18
|
-
"coding"
|
|
15
|
+
"gemini"
|
|
19
16
|
],
|
|
20
17
|
"main": "dist/index.js",
|
|
21
18
|
"module": "dist/index.mjs",
|
|
@@ -28,7 +25,8 @@
|
|
|
28
25
|
}
|
|
29
26
|
},
|
|
30
27
|
"bin": {
|
|
31
|
-
"juno-code": "./dist/bin/juno-code.sh"
|
|
28
|
+
"juno-code": "./dist/bin/juno-code.sh",
|
|
29
|
+
"juno-collect-feedback": "./dist/bin/feedback-collector.mjs"
|
|
32
30
|
},
|
|
33
31
|
"files": [
|
|
34
32
|
"dist",
|
|
@@ -36,7 +34,39 @@
|
|
|
36
34
|
"CHANGELOG.md"
|
|
37
35
|
],
|
|
38
36
|
"scripts": {
|
|
39
|
-
"
|
|
37
|
+
"dev": "tsx src/bin/cli.ts",
|
|
38
|
+
"build": "tsup && npm run build:copy-templates && npm run build:copy-services && npm run build:copy-wrapper",
|
|
39
|
+
"build:copy-templates": "node -e \"require('fs-extra').copySync('src/templates/scripts', 'dist/templates/scripts', { recursive: true })\"",
|
|
40
|
+
"build:copy-services": "node -e \"const fs = require('fs-extra'); fs.copySync('src/templates/services', 'dist/templates/services', { recursive: true }); fs.chmodSync('dist/templates/services/codex.py', 0o755); fs.chmodSync('dist/templates/services/claude.py', 0o755);\"",
|
|
41
|
+
"build:copy-wrapper": "node -e \"const fs = require('fs-extra'); fs.copySync('src/bin/juno-code.sh', 'dist/bin/juno-code.sh'); fs.chmodSync('dist/bin/juno-code.sh', 0o755);\"",
|
|
42
|
+
"build:watch": "tsup --watch",
|
|
43
|
+
"test": "vitest",
|
|
44
|
+
"test:tui": "RUN_TUI=1 vitest -c ./vitest.tui.config.ts run",
|
|
45
|
+
"test:tui:preserve": "PRESERVE_TMP=1 RUN_TUI=1 vitest -c ./vitest.tui.config.ts run",
|
|
46
|
+
"test:feedback": "RUN_TUI=1 vitest -c ./vitest.tui.config.ts run src/cli/__tests__/feedback-command-tui-execution.test.ts",
|
|
47
|
+
"test:binary": "vitest run src/cli/__tests__/binary-execution-interactive.test.ts",
|
|
48
|
+
"help:test:tui": "bash ./scripts/test-usage.sh tui",
|
|
49
|
+
"help:test:binary": "bash ./scripts/test-usage.sh binary",
|
|
50
|
+
"test:unit": "vitest run src/__tests__/unit",
|
|
51
|
+
"test:integration": "vitest run src/__tests__/integration",
|
|
52
|
+
"test:e2e": "vitest run src/__tests__/e2e",
|
|
53
|
+
"test:coverage": "vitest run --coverage",
|
|
54
|
+
"test:watch": "vitest",
|
|
55
|
+
"lint": "eslint src --ext .ts,.tsx",
|
|
56
|
+
"lint:fix": "eslint src --ext .ts,.tsx --fix",
|
|
57
|
+
"format": "prettier --write src/**/*.{ts,tsx,json,md}",
|
|
58
|
+
"format:check": "prettier --check src/**/*.{ts,tsx,json,md}",
|
|
59
|
+
"typecheck": "tsc --noEmit",
|
|
60
|
+
"clean": "rimraf dist",
|
|
61
|
+
"prepack": "npm run clean && npm run build",
|
|
62
|
+
"cli": "tsx src/bin/cli.ts",
|
|
63
|
+
"completion:install": "tsx src/bin/cli.ts --install-completion",
|
|
64
|
+
"docs:api": "typedoc src/index.ts",
|
|
65
|
+
"release": "semantic-release",
|
|
66
|
+
"deploy": "bash scripts/publish-all.sh patch",
|
|
67
|
+
"deploy:minor": "bash scripts/publish-all.sh minor",
|
|
68
|
+
"deploy:major": "bash scripts/publish-all.sh major",
|
|
69
|
+
"deploy:dry-run": "bash scripts/publish-all.sh patch --dry-run"
|
|
40
70
|
},
|
|
41
71
|
"dependencies": {
|
|
42
72
|
"@modelcontextprotocol/sdk": "^1.20.0",
|
|
@@ -59,6 +89,41 @@
|
|
|
59
89
|
"which": "^4.0.0",
|
|
60
90
|
"zod": "^3.22.4"
|
|
61
91
|
},
|
|
92
|
+
"devDependencies": {
|
|
93
|
+
"@faker-js/faker": "^8.3.1",
|
|
94
|
+
"@testing-library/jest-dom": "^6.1.5",
|
|
95
|
+
"@testing-library/react": "^14.1.2",
|
|
96
|
+
"@testing-library/user-event": "^14.5.1",
|
|
97
|
+
"@types/fs-extra": "^11.0.4",
|
|
98
|
+
"@types/js-yaml": "^4.0.9",
|
|
99
|
+
"@types/node": "^20.10.0",
|
|
100
|
+
"@types/react": "^18.2.45",
|
|
101
|
+
"@types/semver": "^7.5.6",
|
|
102
|
+
"@types/tmp": "^0.2.6",
|
|
103
|
+
"@types/uuid": "^9.0.7",
|
|
104
|
+
"@typescript-eslint/eslint-plugin": "^6.14.0",
|
|
105
|
+
"@typescript-eslint/parser": "^6.14.0",
|
|
106
|
+
"@vitest/coverage-v8": "^1.0.4",
|
|
107
|
+
"eslint": "^8.55.0",
|
|
108
|
+
"eslint-config-prettier": "^9.1.0",
|
|
109
|
+
"eslint-plugin-react": "^7.33.2",
|
|
110
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
111
|
+
"happy-dom": "^12.10.3",
|
|
112
|
+
"ink-testing-library": "^3.0.0",
|
|
113
|
+
"memfs": "^4.6.0",
|
|
114
|
+
"msw": "^2.0.11",
|
|
115
|
+
"node-pty": "^1.0.0",
|
|
116
|
+
"prettier": "^3.1.1",
|
|
117
|
+
"rimraf": "^5.0.5",
|
|
118
|
+
"semantic-release": "^22.0.12",
|
|
119
|
+
"strip-ansi": "^7.1.2",
|
|
120
|
+
"tmp": "^0.2.1",
|
|
121
|
+
"tsup": "^8.0.1",
|
|
122
|
+
"tsx": "^4.6.2",
|
|
123
|
+
"typedoc": "^0.25.4",
|
|
124
|
+
"typescript": "^5.3.3",
|
|
125
|
+
"vitest": "^1.0.4"
|
|
126
|
+
},
|
|
62
127
|
"engines": {
|
|
63
128
|
"node": ">=18.0.0"
|
|
64
129
|
},
|