@praveencs/agent 0.7.3 → 0.7.5
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/README.md +8 -0
- package/ROADMAP.md +35 -0
- package/dist/src/cli/index.js +1 -1
- package/docs/comparisons/openclaw.md +60 -0
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -185,6 +185,14 @@ Want to understand how this agent works under the hood? Check out our 5-part arc
|
|
|
185
185
|
4. [**Memory & Context**](docs/articles/04-memory-persistence.md) - SQLite & Vector storage.
|
|
186
186
|
5. [**Self-Improvement**](docs/articles/05-self-improvement.md) - Metrics & The Auto-Fixer.
|
|
187
187
|
|
|
188
|
+
## 🔮 What's Next?
|
|
189
|
+
|
|
190
|
+
We are just getting started. The future includes **Multi-Agent Swarms**, **Sandboxed Execution**, and **Voice Interfaces**.
|
|
191
|
+
Check out our detailed [**ROADMAP.md**](ROADMAP.md) to see where we are heading and how you can help build the future of autonomous software development.
|
|
192
|
+
|
|
193
|
+
### Comparisons
|
|
194
|
+
- [**vs OpenClaw**](docs/comparisons/openclaw.md) - How we differ from other AI OS projects.
|
|
195
|
+
|
|
188
196
|
## 🤝 Contributing
|
|
189
197
|
|
|
190
198
|
We welcome contributions! Please see [CONTRIBUTING.md](CONTRIBUTING.md) for details on how to set up your development environment.
|
package/ROADMAP.md
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# 🛣️ Roadmap: The Future of @praveencs/agent
|
|
2
|
+
|
|
3
|
+
We have built a robust autonomous agent runtime (`v0.7.x`). But this is just the beginning.
|
|
4
|
+
Here is our vision for the next major milestones.
|
|
5
|
+
|
|
6
|
+
## Phase 1: Robustness & Safety (Current Focus)
|
|
7
|
+
- [ ] **Sandboxed Execution**: Run all shell skills inside ephemeral Docker containers to prevent accidental system damage.
|
|
8
|
+
- [ ] **Permission Scopes**: Fine-grained access control (e.g., "Allow read access to `/project` but write access only to `/project/src`").
|
|
9
|
+
- [ ] **Secrets Management**: Secure, encrypted storage for API keys integrated with system keychains.
|
|
10
|
+
|
|
11
|
+
## Phase 2: Multi-Agent Collaboration (The Swarm)
|
|
12
|
+
- [ ] **Agent-to-Agent Protocol**: Define a standard schema for agents to send messages and delegate tasks to each other.
|
|
13
|
+
- [ ] **Specialized Personas**:
|
|
14
|
+
- `Coder Agent`: Writes and tests code.
|
|
15
|
+
- `Reviewer Agent`: Critiques pull requests.
|
|
16
|
+
- `Architect Agent`: High-level system design.
|
|
17
|
+
- [ ] **Orchestrator**: A master process that spins up specialized agents for a complex goal.
|
|
18
|
+
|
|
19
|
+
## Phase 3: Multimodal Interfaces
|
|
20
|
+
- [ ] **Voice Interface**: Speak to your agent ("Deploy this to prod") and hear responses.
|
|
21
|
+
- [ ] **Vision Capabilities**: Allow the agent to "see" your screen or read images (e.g., "Fix the CSS on this screenshot").
|
|
22
|
+
- [ ] **IDE Integration**: VS Code extension to have the agent live in your editor sidebar.
|
|
23
|
+
|
|
24
|
+
## Phase 4: The Agent Cloud
|
|
25
|
+
- [ ] **Skill Hub**: A public registry (npm-style) to share and install community skills.
|
|
26
|
+
- [ ] **Remote Execution**: Run the heavy agent logic on a cloud server while controlling it from your laptop.
|
|
27
|
+
- [ ] **Web Dashboard**: Real-time visualization of agent thought processes, memory graph, and task plans.
|
|
28
|
+
|
|
29
|
+
## 🤝 Join the Mission
|
|
30
|
+
This is an open-source journey. We need help with:
|
|
31
|
+
- Writing new Skills (see `docs/articles/03-skill-execution.md`)
|
|
32
|
+
- Improving the Planner prompt engineering
|
|
33
|
+
- Building the Web Dashboard
|
|
34
|
+
|
|
35
|
+
Submit a PR and let's build the future of work, together.
|
package/dist/src/cli/index.js
CHANGED
|
@@ -18,7 +18,7 @@ export function createCLI() {
|
|
|
18
18
|
program
|
|
19
19
|
.name('agent')
|
|
20
20
|
.description('Agent Runtime — autonomous, goal-oriented AI agent with skills, plans, memory, and permissioned tools')
|
|
21
|
-
.version('0.7.
|
|
21
|
+
.version('0.7.5')
|
|
22
22
|
.option('--verbose', 'Enable verbose output')
|
|
23
23
|
.option('--no-color', 'Disable colored output')
|
|
24
24
|
.option('--config <path>', 'Path to config file');
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
# Comparison: @praveencs/agent vs OpenClaw
|
|
2
|
+
|
|
3
|
+
This document compares `@praveencs/agent` (this project) with [OpenClaw](https://github.com/openclaw/openclaw), a popular open-source AI operating system.
|
|
4
|
+
|
|
5
|
+
## 1. Core Philosophy
|
|
6
|
+
|
|
7
|
+
| Feature | @praveencs/agent | OpenClaw |
|
|
8
|
+
|---|---|---|
|
|
9
|
+
| **Primary Goal** | **Autonomous Task Execution.** Designed to be a headless "digital employee" that plans and builds software in the background. | **AI Operating System.** Designed to be a "24/7 Jarvis" that integrates with chat apps (Discord, Telegram) and manages your digital life. |
|
|
10
|
+
| **Interaction** | **CLI-First.** You give it a goal, and it works silently. | **Chat-First.** You talk to it via various messaging platforms. |
|
|
11
|
+
| **Persona** | A Junior Developer / Project Manager. | A Personal Assistant / OS Interface. |
|
|
12
|
+
|
|
13
|
+
## 2. Architecture
|
|
14
|
+
|
|
15
|
+
### @praveencs/agent
|
|
16
|
+
- **Monolithic CLI/Daemon**: A single TypeScript application that runs locally.
|
|
17
|
+
- **Daemon Loop**: A background process that polls a queue of tasks.
|
|
18
|
+
- **Planner-Executor Split**: Explicit "Brain" (Goal Decomposition) and "Body" (Task Execution) separation.
|
|
19
|
+
- **Database**: Uses `better-sqlite3` for high-performance, structured local storage.
|
|
20
|
+
|
|
21
|
+
### OpenClaw
|
|
22
|
+
- **Gateway Architecture**: A Hub-and-Spoke model with a central Gateway managing WebSocket connections to various "Channels" (Telegram, Discord).
|
|
23
|
+
- **Service Mesh**: Decouples the "Brain" from the inputs/outputs via adapters.
|
|
24
|
+
- **Markdown-First Memory**: Stores state and memory as flat Markdown files on disk.
|
|
25
|
+
|
|
26
|
+
## 3. Capabilities & Skills
|
|
27
|
+
|
|
28
|
+
| | @praveencs/agent | OpenClaw |
|
|
29
|
+
|---|---|---|
|
|
30
|
+
| **Skill Definition** | **Prompt-as-Code.** Skills are simple `.md` files with natural language instructions. | **Plugin System.** Code-based plugins to extend functionality. |
|
|
31
|
+
| **Execution** | **Shell-Native.** Executes command-line tools natively (git, docker, npm). | **Sandbox-Native.** Heavily focuses on browser automation and secure sandboxing. |
|
|
32
|
+
| **Self-Improvement** | **Built-in Auto-Fixer.** Monitors success rates and rewrites broken skills automatically. | **Manual/Plugin.** Relies on users or plugin updates. |
|
|
33
|
+
|
|
34
|
+
## 4. Memory Implementation
|
|
35
|
+
|
|
36
|
+
### @praveencs/agent
|
|
37
|
+
- **Hybrid Storage**: Uses **SQLite** for structured data (tasks, metrics) and **Vector/FTS5** layers for semantic search.
|
|
38
|
+
- **Why?**: Faster retrieval for large codebases and project histories. Allows complex queries ("Select tasks from 2 days ago related to 'database'").
|
|
39
|
+
|
|
40
|
+
### OpenClaw
|
|
41
|
+
- **File-System Storage**: Stores conversations and memories as Markdown files.
|
|
42
|
+
- **Why?**: "Unix philosophy" - easy to read/edit by humans, no database dependencies.
|
|
43
|
+
|
|
44
|
+
## 5. Use Case Recommendation
|
|
45
|
+
|
|
46
|
+
**Choose @praveencs/agent if:**
|
|
47
|
+
- You want an AI to **write code, manage servers, or automate dev workflows**.
|
|
48
|
+
- You prefer a command-line interface.
|
|
49
|
+
- You need structured planning and long-term project management.
|
|
50
|
+
- You want a system that improves itself over time.
|
|
51
|
+
|
|
52
|
+
**Choose OpenClaw if:**
|
|
53
|
+
- You want to **chat with your AI** via WhatsApp/Discord.
|
|
54
|
+
- You need a personal assistant to manage emails, calendars, and smart home devices.
|
|
55
|
+
- You prefer storing data in plain text files.
|
|
56
|
+
- You want deep browser automation capabilities.
|
|
57
|
+
|
|
58
|
+
## Summary
|
|
59
|
+
|
|
60
|
+
While OpenClaw builds a bridge between AI and *Communication Channels*, `@praveencs/agent` builds a bridge between AI and *Work Execution*. We are focused on the "Agent as a Worker" paradigm, whereas OpenClaw focuses on "Agent as an Interface".
|