@axplusb/kepler 1.0.1 → 1.0.4
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/KEPLER-README.md +97 -0
- package/README.md +40 -25
- package/README.md.orca +82 -0
- package/package.json +9 -4
- package/src/core/backend-url.mjs +2 -2
- package/src/core/jsonl-writer.mjs +1 -1
- package/src/core/paths.mjs +0 -2
- package/src/index.mjs +1 -1
- package/src/terminal/main.mjs +1 -1
package/KEPLER-README.md
ADDED
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
# @axplusb/kepler
|
|
2
|
+
|
|
3
|
+
AI coding agent that plans, builds, tests, and ships. 30.7% on SWE-bench Lite.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g @axplusb/kepler
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Quick Start
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
kepler login # Sign in via browser (GitHub/Google)
|
|
15
|
+
kepler # Start interactive REPL
|
|
16
|
+
kepler "fix the auth bug" # Run a single instruction
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Commands
|
|
20
|
+
|
|
21
|
+
```
|
|
22
|
+
kepler Start interactive REPL
|
|
23
|
+
kepler "instruction" Run a single instruction and exit
|
|
24
|
+
kepler login Sign in via browser
|
|
25
|
+
kepler dashboard Open Kepler Pulse analytics dashboard
|
|
26
|
+
kepler sessions List recent local sessions
|
|
27
|
+
kepler stats Aggregate session stats (tokens, cost, tools)
|
|
28
|
+
kepler history Recent prompt history
|
|
29
|
+
kepler version Show version
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## REPL Commands
|
|
33
|
+
|
|
34
|
+
```
|
|
35
|
+
/help Show available commands
|
|
36
|
+
/stats Session metrics (tokens, cost, tools)
|
|
37
|
+
/cost Detailed cost breakdown by model
|
|
38
|
+
/history Conversation history
|
|
39
|
+
/clear Clear conversation history
|
|
40
|
+
/explore <query> Spawn read-only codebase explorer
|
|
41
|
+
/review <query> Spawn code review agent
|
|
42
|
+
/architect <query> Spawn architecture planning agent
|
|
43
|
+
/safety Show safety guardrail status
|
|
44
|
+
/revoke Revoke auto-approvals
|
|
45
|
+
/exit Exit the REPL
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
## Keyboard
|
|
49
|
+
|
|
50
|
+
```
|
|
51
|
+
Esc Cancel current execution
|
|
52
|
+
Space Pause / resume execution
|
|
53
|
+
Ctrl+C Exit
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
## Configuration
|
|
57
|
+
|
|
58
|
+
Settings are managed via the web dashboard at [codekepler.ai/dashboard/settings](https://codekepler.ai/dashboard/settings) and synced to the CLI automatically.
|
|
59
|
+
|
|
60
|
+
- **API Key**: Add your OpenRouter/Anthropic/OpenAI key in Settings
|
|
61
|
+
- **Model**: Choose your preferred model (40+ supported)
|
|
62
|
+
- **Gateway**: Select provider (OpenRouter, Anthropic, OpenAI, Bedrock, Google AI, etc.)
|
|
63
|
+
- **Config directory**: `~/.kepler/`
|
|
64
|
+
|
|
65
|
+
## Models
|
|
66
|
+
|
|
67
|
+
Works with 13 providers and 40+ models:
|
|
68
|
+
|
|
69
|
+
| Provider | Models |
|
|
70
|
+
|----------|--------|
|
|
71
|
+
| DeepSeek | V4 Flash, V4 Pro, R1 |
|
|
72
|
+
| Anthropic | Claude Opus 4.6, Sonnet 4.6, Haiku 4.5 |
|
|
73
|
+
| Google | Gemini 2.5 Pro, Flash |
|
|
74
|
+
| OpenAI | GPT-4.1, O3, Codex |
|
|
75
|
+
| Meta | Llama 4 Maverick, Scout |
|
|
76
|
+
| Mistral | Devstral, Codestral |
|
|
77
|
+
| xAI | Grok 3 |
|
|
78
|
+
| Qwen | Qwen3 Coder |
|
|
79
|
+
| + | AWS Bedrock, Azure OpenAI, Databricks, Moonshot, Custom |
|
|
80
|
+
|
|
81
|
+
Platform default included free. Bring your own API key for unlimited.
|
|
82
|
+
|
|
83
|
+
## SWE-bench
|
|
84
|
+
|
|
85
|
+
| Model | Score | Cost |
|
|
86
|
+
|-------|-------|------|
|
|
87
|
+
| DeepSeek V4 Flash | 30.7% (92/300) | $0.03/fix |
|
|
88
|
+
| DeepSeek V4 Pro | 50% (14/28 sample) | $0.48/fix |
|
|
89
|
+
|
|
90
|
+
## Links
|
|
91
|
+
|
|
92
|
+
- Website: [codekepler.ai](https://codekepler.ai)
|
|
93
|
+
- Company: [axplusb.tech](https://axplusb.tech)
|
|
94
|
+
|
|
95
|
+
## License
|
|
96
|
+
|
|
97
|
+
MIT
|
package/README.md
CHANGED
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
# @
|
|
1
|
+
# @axplusb/kepler
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
AI coding agent that plans, builds, tests, and ships. 30.7% on SWE-bench Lite.
|
|
4
4
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npm install -g @
|
|
8
|
+
npm install -g @axplusb/kepler
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
## Quick Start
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
14
|
+
kepler login # Sign in via browser (GitHub/Google)
|
|
15
|
+
kepler # Start interactive REPL
|
|
16
|
+
kepler "fix the auth bug" # Run a single instruction
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
## Commands
|
|
20
20
|
|
|
21
21
|
```
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
22
|
+
kepler Start interactive REPL
|
|
23
|
+
kepler "instruction" Run a single instruction and exit
|
|
24
|
+
kepler login Sign in via browser
|
|
25
|
+
kepler dashboard Open Kepler Pulse analytics dashboard
|
|
26
|
+
kepler sessions List recent local sessions
|
|
27
|
+
kepler stats Aggregate session stats (tokens, cost, tools)
|
|
28
|
+
kepler history Recent prompt history
|
|
29
|
+
kepler version Show version
|
|
30
30
|
```
|
|
31
31
|
|
|
32
32
|
## REPL Commands
|
|
@@ -55,27 +55,42 @@ Ctrl+C Exit
|
|
|
55
55
|
|
|
56
56
|
## Configuration
|
|
57
57
|
|
|
58
|
-
Settings are managed via the web dashboard at [
|
|
58
|
+
Settings are managed via the web dashboard at [codekepler.ai/dashboard/settings](https://codekepler.ai/dashboard/settings) and synced to the CLI automatically.
|
|
59
59
|
|
|
60
60
|
- **API Key**: Add your OpenRouter/Anthropic/OpenAI key in Settings
|
|
61
61
|
- **Model**: Choose your preferred model (40+ supported)
|
|
62
62
|
- **Gateway**: Select provider (OpenRouter, Anthropic, OpenAI, Bedrock, Google AI, etc.)
|
|
63
|
+
- **Config directory**: `~/.kepler/`
|
|
63
64
|
|
|
64
|
-
|
|
65
|
+
## Models
|
|
65
66
|
|
|
66
|
-
|
|
67
|
+
Works with 13 providers and 40+ models:
|
|
67
68
|
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
69
|
+
| Provider | Models |
|
|
70
|
+
|----------|--------|
|
|
71
|
+
| DeepSeek | V4 Flash, V4 Pro, R1 |
|
|
72
|
+
| Anthropic | Claude Opus 4.6, Sonnet 4.6, Haiku 4.5 |
|
|
73
|
+
| Google | Gemini 2.5 Pro, Flash |
|
|
74
|
+
| OpenAI | GPT-4.1, O3, Codex |
|
|
75
|
+
| Meta | Llama 4 Maverick, Scout |
|
|
76
|
+
| Mistral | Devstral, Codestral |
|
|
77
|
+
| xAI | Grok 3 |
|
|
78
|
+
| Qwen | Qwen3 Coder |
|
|
79
|
+
| + | AWS Bedrock, Azure OpenAI, Databricks, Moonshot, Custom |
|
|
80
|
+
|
|
81
|
+
Platform default included free. Bring your own API key for unlimited.
|
|
82
|
+
|
|
83
|
+
## SWE-bench
|
|
84
|
+
|
|
85
|
+
| Model | Score | Cost |
|
|
86
|
+
|-------|-------|------|
|
|
87
|
+
| DeepSeek V4 Flash | 30.7% (92/300) | $0.03/fix |
|
|
88
|
+
| DeepSeek V4 Pro | 50% (14/28 sample) | $0.48/fix |
|
|
74
89
|
|
|
75
90
|
## Links
|
|
76
91
|
|
|
77
|
-
- [
|
|
78
|
-
- [
|
|
92
|
+
- Website: [codekepler.ai](https://codekepler.ai)
|
|
93
|
+
- Company: [axplusb.tech](https://axplusb.tech)
|
|
79
94
|
|
|
80
95
|
## License
|
|
81
96
|
|
package/README.md.orca
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
# @devtarang/orca
|
|
2
|
+
|
|
3
|
+
Orca — AI coding agent that plans, builds, and ships software from your terminal. Multi-agent orchestration with explore, review, and architect sub-agents.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g @devtarang/orca
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Quick Start
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
orca login # Sign in via browser (GitHub/Google)
|
|
15
|
+
orca # Start interactive REPL
|
|
16
|
+
orca "add user authentication" # Run a single instruction
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Commands
|
|
20
|
+
|
|
21
|
+
```
|
|
22
|
+
orca Start interactive REPL
|
|
23
|
+
orca "instruction" Run a single instruction and exit
|
|
24
|
+
orca login Sign in via browser
|
|
25
|
+
orca dashboard Open Orca Pulse analytics dashboard
|
|
26
|
+
orca sessions List recent local sessions
|
|
27
|
+
orca stats Aggregate session stats (tokens, cost, tools)
|
|
28
|
+
orca history Recent prompt history
|
|
29
|
+
orca version Show version
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## REPL Commands
|
|
33
|
+
|
|
34
|
+
```
|
|
35
|
+
/help Show available commands
|
|
36
|
+
/stats Session metrics (tokens, cost, tools)
|
|
37
|
+
/cost Detailed cost breakdown by model
|
|
38
|
+
/history Conversation history
|
|
39
|
+
/clear Clear conversation history
|
|
40
|
+
/explore <query> Spawn read-only codebase explorer
|
|
41
|
+
/review <query> Spawn code review agent
|
|
42
|
+
/architect <query> Spawn architecture planning agent
|
|
43
|
+
/safety Show safety guardrail status
|
|
44
|
+
/revoke Revoke auto-approvals
|
|
45
|
+
/exit Exit the REPL
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
## Keyboard
|
|
49
|
+
|
|
50
|
+
```
|
|
51
|
+
Esc Cancel current execution
|
|
52
|
+
Space Pause / resume execution
|
|
53
|
+
Ctrl+C Exit
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
## Configuration
|
|
57
|
+
|
|
58
|
+
Settings are managed via the web dashboard at [devtarang.ai/dashboard/settings](https://devtarang.ai/dashboard/settings) and synced to the CLI automatically.
|
|
59
|
+
|
|
60
|
+
- **API Key**: Add your OpenRouter/Anthropic/OpenAI key in Settings
|
|
61
|
+
- **Model**: Choose your preferred model (40+ supported)
|
|
62
|
+
- **Gateway**: Select provider (OpenRouter, Anthropic, OpenAI, Bedrock, Google AI, etc.)
|
|
63
|
+
|
|
64
|
+
Config directory: `~/.orca/`
|
|
65
|
+
|
|
66
|
+
## Environment Variables
|
|
67
|
+
|
|
68
|
+
```
|
|
69
|
+
TARANG_ENV Set backend (local, development, production)
|
|
70
|
+
ANTHROPIC_API_KEY Direct Anthropic API key
|
|
71
|
+
OPENROUTER_API_KEY OpenRouter API key
|
|
72
|
+
ORCA_CONFIG_DIR Override config directory (default: ~/.orca)
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
## Links
|
|
76
|
+
|
|
77
|
+
- [Tarang Platform](https://devtarang.ai)
|
|
78
|
+
- [Documentation](https://devtarang.ai/docs)
|
|
79
|
+
|
|
80
|
+
## License
|
|
81
|
+
|
|
82
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@axplusb/kepler",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Kepler — AI coding agent
|
|
3
|
+
"version": "1.0.4",
|
|
4
|
+
"description": "Kepler — AI coding agent that plans, builds, tests, and ships. 30.7% on SWE-bench Lite.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"kepler": "src/terminal/main.mjs"
|
|
8
8
|
},
|
|
9
9
|
"files": [
|
|
10
10
|
"src/",
|
|
11
|
-
"pulse/"
|
|
11
|
+
"pulse/",
|
|
12
|
+
"KEPLER-README.md"
|
|
12
13
|
],
|
|
14
|
+
"readme": "KEPLER-README.md",
|
|
13
15
|
"scripts": {
|
|
14
16
|
"start": "node src/terminal/main.mjs",
|
|
15
17
|
"test": "node test/test-sse-client.mjs && node test/test-tool-executor.mjs && node test/test-callback.mjs && node test/test-formatter.mjs && node test/test-terminal-rendering.mjs && node test/test-slash-commands.mjs && node test/test-approval.mjs && node test/test-session-manager.mjs && node test/test-safety.mjs && node test/test-jsonl-writer.mjs && node test/test-analytics.mjs && node test/test-stagnation.mjs"
|
|
@@ -26,6 +28,9 @@
|
|
|
26
28
|
"cli",
|
|
27
29
|
"code-generation",
|
|
28
30
|
"deepseek",
|
|
31
|
+
"claude",
|
|
32
|
+
"gpt",
|
|
33
|
+
"gemini",
|
|
29
34
|
"axplusb"
|
|
30
35
|
],
|
|
31
36
|
"license": "MIT",
|
|
@@ -33,7 +38,7 @@
|
|
|
33
38
|
"homepage": "https://codekepler.ai",
|
|
34
39
|
"repository": {
|
|
35
40
|
"type": "git",
|
|
36
|
-
"url": "git+https://github.com/
|
|
41
|
+
"url": "git+https://github.com/raviakasapu/codekepler-web.git"
|
|
37
42
|
},
|
|
38
43
|
"dependencies": {}
|
|
39
44
|
}
|
package/src/core/backend-url.mjs
CHANGED
|
@@ -19,8 +19,8 @@ BACKEND_URLS.prod = BACKEND_URLS.production;
|
|
|
19
19
|
|
|
20
20
|
const WEB_URLS = {
|
|
21
21
|
local: 'http://localhost:3000',
|
|
22
|
-
development: 'https://
|
|
23
|
-
production: 'https://
|
|
22
|
+
development: 'https://codekepler.ai',
|
|
23
|
+
production: 'https://codekepler.ai',
|
|
24
24
|
};
|
|
25
25
|
WEB_URLS.dev = WEB_URLS.development;
|
|
26
26
|
WEB_URLS.prod = WEB_URLS.production;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* JSONL Writer — writes cc-lens compatible session transcripts to ~/.kepler/.
|
|
3
3
|
*
|
|
4
4
|
* Format mirrors Claude Code's ~/.claude/ JSONL structure so that
|
|
5
|
-
* cc-lens (CLAUDE_CONFIG_DIR=~/.
|
|
5
|
+
* cc-lens (CLAUDE_CONFIG_DIR=~/.kepler npx cc-lens) can read Kepler sessions.
|
|
6
6
|
*
|
|
7
7
|
* Design:
|
|
8
8
|
* - Non-blocking: buffered writes, flushed every 500ms or on turn end
|
package/src/core/paths.mjs
CHANGED
package/src/index.mjs
CHANGED
|
@@ -203,7 +203,7 @@ async function main() {
|
|
|
203
203
|
const remote = await auth.syncSettings();
|
|
204
204
|
process.stderr.write(`\x1b[32m✓ Settings synced\x1b[0m ${remote.gateway_type ? `(gateway: ${remote.gateway_type})` : ''}\n`);
|
|
205
205
|
} catch {
|
|
206
|
-
process.stderr.write('\x1b[2mSettings sync skipped — configure at
|
|
206
|
+
process.stderr.write('\x1b[2mSettings sync skipped — configure at codekepler.ai/dashboard/settings\x1b[0m\n');
|
|
207
207
|
}
|
|
208
208
|
process.stderr.write('\n');
|
|
209
209
|
// Fall through to REPL — user starts working right away
|
package/src/terminal/main.mjs
CHANGED
|
@@ -123,7 +123,7 @@ async function main() {
|
|
|
123
123
|
OPENROUTER_API_KEY OpenRouter API key
|
|
124
124
|
KEPLER_CONFIG_DIR Override config directory (default: ~/.kepler)
|
|
125
125
|
|
|
126
|
-
\x1b[2mDocs: https://
|
|
126
|
+
\x1b[2mDocs: https://codekepler.ai/docs\x1b[0m
|
|
127
127
|
`);
|
|
128
128
|
return;
|
|
129
129
|
}
|