@axplusb/kepler 1.0.4 → 1.0.9
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 +128 -2
- package/package.json +4 -4
- package/pulse/app/activity/page.tsx +1 -1
- package/pulse/app/api/import/route.ts +1 -1
- package/pulse/app/api/memory/route.ts +2 -2
- package/pulse/app/costs/page.tsx +1 -1
- package/pulse/app/export/page.tsx +3 -3
- package/pulse/app/globals.css +3 -3
- package/pulse/app/help/page.tsx +11 -11
- package/pulse/app/history/page.tsx +2 -2
- package/pulse/app/layout.tsx +2 -2
- package/pulse/app/memory/page.tsx +2 -2
- package/pulse/app/overview-client.tsx +1 -1
- package/pulse/app/page.tsx +2 -2
- package/pulse/app/plans/page.tsx +2 -2
- package/pulse/app/projects/page.tsx +1 -1
- package/pulse/app/sessions/page.tsx +1 -1
- package/pulse/app/settings/page.tsx +4 -4
- package/pulse/app/todos/page.tsx +2 -2
- package/pulse/app/tools/page.tsx +1 -1
- package/pulse/cli.js +15 -25
- package/pulse/components/layout/sidebar.tsx +2 -2
- package/pulse/components/sessions/replay/user-tool-result.tsx +1 -1
- package/pulse/lib/claude-reader.ts +1 -1
- package/pulse/lib/decode.ts +1 -1
- package/pulse/package.json +3 -3
- package/src/auth/tarang-auth.mjs +1 -1
- package/src/config/cli-args.mjs +5 -0
- package/src/context/retriever.mjs +1 -1
- package/src/context/skeleton.mjs +1 -1
- package/src/core/approval.mjs +22 -53
- package/src/core/headless.mjs +68 -24
- package/src/core/paths.mjs +1 -1
- package/src/core/project-artifacts.mjs +37 -0
- package/src/core/stream-client.mjs +6 -1
- package/src/core/tool-executor.mjs +163 -55
- package/src/skills/installer.mjs +188 -0
- package/src/skills/loader.mjs +217 -112
- package/src/terminal/main.mjs +19 -1
- package/src/terminal/repl.mjs +40 -105
- package/src/terminal/skills.mjs +54 -0
- package/src/terminal/tool-display.mjs +82 -0
- package/src/tools/bash.mjs +5 -2
- package/src/tools/project-overview.mjs +418 -0
- package/src/tools/registry.mjs +0 -16
- package/src/ui/banner.mjs +7 -14
- package/src/ui/formatter.mjs +6 -40
- package/README.md.orca +0 -82
package/README.md.orca
DELETED
|
@@ -1,82 +0,0 @@
|
|
|
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
|