@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.
Files changed (48) hide show
  1. package/KEPLER-README.md +128 -2
  2. package/package.json +4 -4
  3. package/pulse/app/activity/page.tsx +1 -1
  4. package/pulse/app/api/import/route.ts +1 -1
  5. package/pulse/app/api/memory/route.ts +2 -2
  6. package/pulse/app/costs/page.tsx +1 -1
  7. package/pulse/app/export/page.tsx +3 -3
  8. package/pulse/app/globals.css +3 -3
  9. package/pulse/app/help/page.tsx +11 -11
  10. package/pulse/app/history/page.tsx +2 -2
  11. package/pulse/app/layout.tsx +2 -2
  12. package/pulse/app/memory/page.tsx +2 -2
  13. package/pulse/app/overview-client.tsx +1 -1
  14. package/pulse/app/page.tsx +2 -2
  15. package/pulse/app/plans/page.tsx +2 -2
  16. package/pulse/app/projects/page.tsx +1 -1
  17. package/pulse/app/sessions/page.tsx +1 -1
  18. package/pulse/app/settings/page.tsx +4 -4
  19. package/pulse/app/todos/page.tsx +2 -2
  20. package/pulse/app/tools/page.tsx +1 -1
  21. package/pulse/cli.js +15 -25
  22. package/pulse/components/layout/sidebar.tsx +2 -2
  23. package/pulse/components/sessions/replay/user-tool-result.tsx +1 -1
  24. package/pulse/lib/claude-reader.ts +1 -1
  25. package/pulse/lib/decode.ts +1 -1
  26. package/pulse/package.json +3 -3
  27. package/src/auth/tarang-auth.mjs +1 -1
  28. package/src/config/cli-args.mjs +5 -0
  29. package/src/context/retriever.mjs +1 -1
  30. package/src/context/skeleton.mjs +1 -1
  31. package/src/core/approval.mjs +22 -53
  32. package/src/core/headless.mjs +68 -24
  33. package/src/core/paths.mjs +1 -1
  34. package/src/core/project-artifacts.mjs +37 -0
  35. package/src/core/stream-client.mjs +6 -1
  36. package/src/core/tool-executor.mjs +163 -55
  37. package/src/skills/installer.mjs +188 -0
  38. package/src/skills/loader.mjs +217 -112
  39. package/src/terminal/main.mjs +19 -1
  40. package/src/terminal/repl.mjs +40 -105
  41. package/src/terminal/skills.mjs +54 -0
  42. package/src/terminal/tool-display.mjs +82 -0
  43. package/src/tools/bash.mjs +5 -2
  44. package/src/tools/project-overview.mjs +418 -0
  45. package/src/tools/registry.mjs +0 -16
  46. package/src/ui/banner.mjs +7 -14
  47. package/src/ui/formatter.mjs +6 -40
  48. 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