@praveencs/agent 0.7.3 → 0.7.4
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 +5 -0
- package/ROADMAP.md +35 -0
- package/dist/src/cli/index.js +1 -1
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -185,6 +185,11 @@ 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
|
+
|
|
188
193
|
## 🤝 Contributing
|
|
189
194
|
|
|
190
195
|
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.4')
|
|
22
22
|
.option('--verbose', 'Enable verbose output')
|
|
23
23
|
.option('--no-color', 'Disable colored output')
|
|
24
24
|
.option('--config <path>', 'Path to config file');
|