Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ Agent Driver (Goose, Claude Code, Copilot CLI)
| **Infer** | [Ollama](https://ollama.com) | Local LLM inference (Metal GPU on Mac) |
| **Optimize** | [RTK](https://github.com/rtk-ai/rtk) | Token compression — 70-90% reduction on shell output |
| **Execute** | [Goose](https://block.github.io/goose) | AI coding agent with native Ollama support (headless) |
| **Orchestrate** | [Dagu](https://github.com/dagu-org/dagu) | YAML DAG workflows with scheduling and web UI |
| **Coordinate** | [Octi Pulpo](https://github.com/AgentGuardHQ/octi-pulpo) | Budget-aware dispatch, episodic memory, model cascading |
| **Govern** | [AgentGuard](https://github.com/AgentGuardHQ/agentguard) | Policy enforcement on every action — allow/deny/correct |
| **Sandbox** | [OpenShell](https://github.com/NVIDIA/OpenShell) | Kernel-level isolation (Docker on macOS) |
| **Scan** | [DefenseClaw](https://github.com/cisco-ai-defense/defenseclaw) | Supply chain scanner — AI Bill of Materials |
Expand All @@ -101,7 +101,7 @@ shellforge status
# Ollama running (qwen3:30b loaded)
# RTK v0.4.2
# AgentGuard enforce mode (5 rules)
# Dagu connected (web UI at :8080)
# Octi Pulpo connected (http://localhost:8080)
# OpenShell Docker sandbox active
# DefenseClaw scanner ready
```
Expand Down Expand Up @@ -151,14 +151,14 @@ See `dags/multi-driver-swarm.yaml` and `dags/workspace-swarm.yaml` for examples.

```
┌───────────────────────────────────────────────────┐
Dagu (Orchestration)
YAML DAGs · Cron scheduling · Web UI · Retries
Octi Pulpo (Coordination)
Budget-aware dispatch · Memory · Model cascading
└────────────────────┬──────────────────────────────┘
│ task
┌────────────────────▼──────────────────────────────┐
Goose (Execution Engine)
Agent loop · Tool calling · Ollama-native
Uses Ollama for inference
ShellForge Agent Loop
LLM provider · Tool calling · Drift detection
Anthropic API or Ollama
└────────────────────┬──────────────────────────────┘
│ tool call
═══════════╪═══════════
Expand Down
2 changes: 1 addition & 1 deletion docs/architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ Octi Pulpo routes tasks to the cheapest capable driver:
| **Infer** | [Ollama](https://ollama.com) | Local LLM inference (Metal GPU on Mac) |
| **Optimize** | [RTK](https://github.com/rtk-ai/rtk) | Token compression — 70-90% reduction on shell output |
| **Execute** | [Goose](https://block.github.io/goose) / [OpenClaw](https://github.com/openclaw/openclaw) | Agent execution + browser automation |
| **Orchestrate** | [Dagu](https://github.com/dagu-org/dagu) | YAML DAG workflows with scheduling and web UI |
| **Coordinate** | [Octi Pulpo](https://github.com/AgentGuardHQ/octi-pulpo) | Budget-aware dispatch, episodic memory, model cascading |
| **Coordinate** | [Octi Pulpo](https://github.com/AgentGuardHQ/octi-pulpo) | Swarm coordination via MCP |
| **Govern** | [AgentGuard](https://github.com/AgentGuardHQ/agentguard) | Policy enforcement on every action |
| **Sandbox** | [OpenShell](https://github.com/NVIDIA/OpenShell) | Kernel-level isolation (Docker on macOS) |
Expand Down
Loading