@liquidmetal-ai/raindrop-code 0.0.1 → 0.0.3

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 (2) hide show
  1. package/package.json +5 -5
  2. package/README.md +0 -158
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@liquidmetal-ai/raindrop-code",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "description": "AI-powered terminal coding assistant with deep code understanding, file operations, and extensible tools",
5
5
  "keywords": [
6
6
  "ai",
@@ -41,9 +41,9 @@
41
41
  "bin/"
42
42
  ],
43
43
  "optionalDependencies": {
44
- "@liquidmetal-ai/raindrop-code-darwin-universal": "0.0.1",
45
- "@liquidmetal-ai/raindrop-code-linux-x64": "0.0.1",
46
- "@liquidmetal-ai/raindrop-code-linux-arm64": "0.0.1",
47
- "@liquidmetal-ai/raindrop-code-win32-x64": "0.0.1"
44
+ "@liquidmetal-ai/raindrop-code-darwin-universal": "0.0.3",
45
+ "@liquidmetal-ai/raindrop-code-linux-x64": "0.0.3",
46
+ "@liquidmetal-ai/raindrop-code-linux-arm64": "0.0.3",
47
+ "@liquidmetal-ai/raindrop-code-win32-x64": "0.0.3"
48
48
  }
49
49
  }
package/README.md DELETED
@@ -1,158 +0,0 @@
1
- # Raindrop Code
2
-
3
- > AI-powered terminal coding assistant with deep code understanding
4
-
5
- Raindrop Code is an intelligent coding assistant that runs in your terminal, combining the power of large language models (Claude, GPT, and compatible APIs) with deep codebase understanding, file operations, git integration, and an extensible tool ecosystem.
6
-
7
- ## Features
8
-
9
- - 🧠 **Deep Code Understanding** - Automatically indexes your codebase using tree-sitter for intelligent search and context-aware assistance
10
- - 🛠️ **Rich Tool Ecosystem** - File operations, git, bash, web search, and more - all accessible to the AI
11
- - 🤖 **Specialized Agents** - Spawn sub-agents for code review, refactoring, and custom tasks
12
- - ⚡ **Fast & Responsive** - Incremental indexing with real-time file watching
13
- - 🎨 **Modern Terminal UI** - Clean interface with syntax highlighting and markdown rendering
14
- - 🔌 **MCP Support** - Integrates with Model Context Protocol servers
15
- - 🌐 **Multi-Provider** - Works with Anthropic (Claude), OpenAI (GPT), and OpenAI-compatible APIs
16
-
17
- ## Installation
18
-
19
- ```bash
20
- npm install -g @liquidmetal-ai/raindrop-code
21
- ```
22
-
23
- ## Quick Start
24
-
25
- ### 1. Set up API keys
26
-
27
- Set at least one API key as an environment variable:
28
-
29
- ```bash
30
- # Anthropic Claude (recommended)
31
- export ANTHROPIC_API_KEY=sk-ant-...
32
-
33
- # OpenAI GPT
34
- export OPENAI_API_KEY=sk-...
35
-
36
- # Optional: Enable web search
37
- export BRAVE_SEARCH_API_KEY=...
38
- ```
39
-
40
- ### 2. Run in your project directory
41
-
42
- ```bash
43
- cd my-project
44
- raindrop-code
45
- ```
46
-
47
- ### 3. Start coding!
48
-
49
- ```
50
- > Explain how authentication works in this codebase
51
- > Find all TODO comments
52
- > Create a new API endpoint for user registration
53
- > Review src/handlers/user.go for potential bugs
54
- ```
55
-
56
- ## Configuration
57
-
58
- On first run, Raindrop Code creates `~/.raindrop-code/` with configuration files. Edit `~/.raindrop-code/config.yaml` to customize behavior.
59
-
60
- ### Example Configuration
61
-
62
- ```yaml
63
- # Which provider to use by default
64
- default_provider: anthropic
65
-
66
- providers:
67
- anthropic:
68
- connection:
69
- api_key: env:ANTHROPIC_API_KEY
70
- base_url: "https://api.anthropic.com/v1"
71
- model:
72
- default: claude-sonnet-4-5-20250929
73
- configs:
74
- claude-sonnet-4-5-20250929:
75
- context_window: 200000
76
- params:
77
- max_tokens: 8192
78
- temperature: 1.0
79
- ```
80
-
81
- ## Available Tools
82
-
83
- The AI has access to these tools:
84
-
85
- | Tool | Description |
86
- |------|-------------|
87
- | `read_file` | Read any file in your project |
88
- | `write_file` | Create new files |
89
- | `edit_file` | Make precise edits to existing files |
90
- | `bash` | Execute shell commands |
91
- | `git` | Run git operations (status, diff, commit, etc.) |
92
- | `search` | Intelligent code search with symbol understanding |
93
- | `explore` | Browse directories, see file structure and symbols |
94
- | `web_search` | Search the web (requires BRAVE_SEARCH_API_KEY) |
95
- | `web_fetch` | Fetch content from URLs |
96
- | `agent_tool` | Spawn specialized sub-agents |
97
- | `workflow` | Execute multi-step workflows |
98
-
99
- ## Commands
100
-
101
- | Command | Description |
102
- |---------|-------------|
103
- | `/clear` | Clear conversation history |
104
- | `/context` | Toggle context panel (shows indexing status) |
105
- | `/help` | Show available commands |
106
- | `/reindex` | Manually trigger workspace reindexing |
107
- | `/readme` | Display README |
108
-
109
- ## Custom Commands & Agents
110
-
111
- Create custom commands in `~/.raindrop-code/commands/`:
112
-
113
- ```markdown
114
- ---
115
- description: Run tests and fix any failures
116
- ---
117
-
118
- Please run the test suite and fix any failures you find.
119
- ```
120
-
121
- Create custom agents in `~/.raindrop-code/agents/`:
122
-
123
- ```markdown
124
- ---
125
- name: security-auditor
126
- description: Security audit specialist
127
- tools: [read_file, search, bash]
128
- ---
129
-
130
- You are a security expert. Review code for vulnerabilities...
131
- ```
132
-
133
- ## Platform Support
134
-
135
- - **macOS** (Apple Silicon & Intel)
136
- - **Linux** (x64 & ARM64)
137
- - **Windows** (x64)
138
-
139
- ## Documentation
140
-
141
- - [Full Documentation](https://github.com/ianschenck/raindrop-code)
142
- - [Configuration Guide](https://github.com/ianschenck/raindrop-code#configuration)
143
- - [Custom Agents](https://github.com/ianschenck/raindrop-code#agents)
144
- - [API Reference](https://github.com/ianschenck/raindrop-code/wiki)
145
-
146
- ## License
147
-
148
- MIT License - see LICENSE file for details
149
-
150
- ## Links
151
-
152
- - [GitHub Repository](https://github.com/ianschenck/raindrop-code)
153
- - [Report Issues](https://github.com/ianschenck/raindrop-code/issues)
154
- - [LiquidMetal.AI](https://liquidmetal.ai)
155
-
156
- ---
157
-
158
- Built with ❤️ by the Raindrop team