@learnrudi/cli 1.10.1 → 1.10.2

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/index.cjs CHANGED
@@ -31848,60 +31848,64 @@ USAGE
31848
31848
  SETUP
31849
31849
  init Bootstrap RUDI (download runtimes, create shims)
31850
31850
 
31851
- INTROSPECTION
31852
- home Show ~/.rudi structure and installed packages
31853
- stacks List installed stacks
31854
- runtimes List installed runtimes
31855
- binaries List installed binaries
31856
- agents List installed agents
31857
- prompts List installed prompts
31858
- doctor Check system health and dependencies
31859
- doctor --all Show all available runtimes/binaries from registry
31860
-
31861
- PACKAGE MANAGEMENT
31851
+ REGISTRY
31862
31852
  search <query> Search registry for packages
31863
31853
  search --all List all available packages
31864
31854
  install <pkg> Install a package
31865
31855
  remove <pkg> Remove a package
31866
31856
  update [pkg] Update packages
31867
- run <stack> Run a stack
31868
31857
 
31869
- DATABASE
31870
- db stats Show database statistics
31871
- db search <query> Search conversation history
31872
- db reset --force Delete all data
31873
- db vacuum Compact and reclaim space
31874
- db tables Show table row counts
31858
+ INSTALLED
31859
+ list [kind] List installed packages (stacks, prompts, runtimes, binaries, agents)
31860
+ home Show ~/.rudi structure and status
31861
+ doctor Check system health and dependencies
31862
+ which <cmd> Show path to a command
31863
+ info <pkg> Show package details
31864
+
31865
+ AGENT INTEGRATION
31866
+ integrate <agent> Wire up RUDI router (claude, cursor, gemini, codex, all)
31867
+ integrate --list Show detected agents
31868
+ index Rebuild tool cache for router
31875
31869
 
31876
- SESSION IMPORT
31877
- import sessions Import from AI providers (claude, codex, gemini)
31878
- import status Show import status
31870
+ RUN
31871
+ run <stack> Run a stack directly
31879
31872
 
31880
31873
  SECRETS
31881
31874
  secrets set <name> Set a secret
31882
31875
  secrets list List configured secrets
31883
31876
  secrets remove <name> Remove a secret
31884
31877
 
31878
+ DATABASE
31879
+ db stats Show database statistics
31880
+ db search <query> Search conversation history
31881
+ db tables Show table row counts
31882
+ db vacuum Compact and reclaim space
31883
+
31884
+ SESSIONS
31885
+ session list List sessions
31886
+ session search <q> Search session content
31887
+ session export <id> Export a session
31888
+ session index Build search embeddings
31889
+
31885
31890
  OPTIONS
31886
31891
  -h, --help Show help
31887
31892
  -v, --version Show version
31888
31893
  --verbose Verbose output
31889
31894
  --json Output as JSON
31890
- --force Force operation
31891
31895
 
31892
31896
  EXAMPLES
31893
- rudi home Show ~/.rudi structure
31894
- rudi runtimes List installed runtimes
31895
- rudi install runtime:python Install Python in ~/.rudi
31896
- rudi install binary:ffmpeg Install ffmpeg
31897
- rudi doctor --all Show all available deps
31897
+ rudi search --all List all available packages
31898
+ rudi install slack Install Slack stack
31899
+ rudi secrets set SLACK_TOKEN Configure secret
31900
+ rudi integrate claude Wire up Claude Desktop/Code
31901
+ rudi list Show installed packages
31898
31902
 
31899
31903
  PACKAGE TYPES
31900
- stack:name MCP server stack
31901
- runtime:name Node, Python, Deno, Bun
31902
- binary:name ffmpeg, ripgrep, etc.
31903
- agent:name Claude, Codex, Gemini CLIs
31904
- prompt:name Prompt template
31904
+ stack:<name> MCP server stack
31905
+ runtime:<name> Node, Python, Deno, Bun
31906
+ binary:<name> ffmpeg, ripgrep, etc.
31907
+ agent:<name> Claude, Codex, Gemini CLIs
31908
+ prompt:<name> Prompt template
31905
31909
  `);
31906
31910
  }
31907
31911
  function printCommandHelp(command) {
@@ -32119,6 +32123,38 @@ EXAMPLES
32119
32123
  rudi doctor
32120
32124
  rudi doctor --fix
32121
32125
  rudi doctor --all
32126
+ `,
32127
+ integrate: `
32128
+ rudi integrate - Wire RUDI router into agent configs
32129
+
32130
+ USAGE
32131
+ rudi integrate <agent> Integrate with specific agent
32132
+ rudi integrate all Integrate with all detected agents
32133
+ rudi integrate --list Show detected agents
32134
+
32135
+ AGENTS
32136
+ claude Claude Desktop + Claude Code
32137
+ cursor Cursor IDE
32138
+ windsurf Windsurf IDE
32139
+ vscode VS Code / GitHub Copilot
32140
+ gemini Gemini CLI
32141
+ codex OpenAI Codex CLI
32142
+ zed Zed Editor
32143
+
32144
+ OPTIONS
32145
+ --verbose Show detailed output
32146
+ --dry-run Show what would be done without making changes
32147
+
32148
+ WHAT IT DOES
32149
+ 1. Detects agent config files
32150
+ 2. Creates backup before modifying
32151
+ 3. Adds RUDI router entry (single MCP server for all stacks)
32152
+ 4. Cleans up old direct stack entries
32153
+
32154
+ EXAMPLES
32155
+ rudi integrate claude
32156
+ rudi integrate all
32157
+ rudi integrate --list
32122
32158
  `,
32123
32159
  logs: `
32124
32160
  rudi logs - Query agent visibility logs
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": "1.0.0",
3
- "generated": "2026-01-10T02:45:32.710Z",
3
+ "generated": "2026-01-10T02:57:32.555Z",
4
4
  "packages": {
5
5
  "runtimes": [
6
6
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@learnrudi/cli",
3
- "version": "1.10.1",
3
+ "version": "1.10.2",
4
4
  "description": "RUDI CLI - Install and manage MCP stacks, runtimes, and AI agents",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",