open-toolbox
Autonomous tool discovery, evaluation, and integration for agent self-enhancement
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Autonomous tool discovery, evaluation, and integration for agent self-enhancement
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Browser automation via Playwright MCP (official Microsoft headless browser)
Image generation and manipulation via MCP
PDF parsing and extraction via MCP
Route OpenOS tasks to the correct product skill.
Enrich CRM contacts with LinkedIn and décideur data.
CRM read + staged follow-up via orchestrator approval.
| name | open-toolbox |
| description | Autonomous tool discovery, evaluation, and integration for agent self-enhancement |
| version | 1.0.0 |
| metadata | {"tags":["tool-discovery","self-improvement","mcp","marketplace","dynamic"],"category":"meta","related_skills":["open-mcp-scaffold","open-brain"]} |
Enable agents to discover, evaluate, and integrate new tools dynamically. Agents can search MCP registries, evaluate tool capabilities, test them in sandbox, and propose integration to the mesh.
open-ecosystem-hub first)Agent identifies capability gap
→ OpenBrain (search existing tools + evaluations)
→ MCP Registry (discover candidates)
→ OpenCode (sandbox test)
→ OpenSec (security review)
→ OpenOrchestrator (approval)
→ OpenMesh-Wiring (integrate)
→ OpenBrain (store evaluation)
Agent recognizes it cannot complete a task:
Task: "Scrape data from example.com"
Current tools: [open-code, open-ticket, ...]
Missing: browser automation capability
Gap identified: need web scraping tool
Query OpenBrain for prior evaluations:
search_knowledge(query="browser automation tool", domain="openos-tools")
Returns cached evaluations if tool was previously assessed.
Search MCP registries:
# GitHub MCP servers
search_github(query="MCP server browser automation", language="rust|typescript|python")
# npm packages
search_npm(query="mcp-server", keywords=["browser", "automation"])
# Docker Hub
search_docker(query="mcp-server", tags=["browser", "automation"])
# Official MCP registry
fetch_mcp_registry(category="browser")
For each candidate, assess:
| Criteria | Weight | How to Check |
|---|---|---|
| Functionality | 30% | Does it solve the gap? |
| Reliability | 20% | Stars, issues, last commit |
| Security | 20% | OpenSec review, no known CVEs |
| Integration | 15% | MCP stdio/HTTP, Docker-ready |
| Maintenance | 15% | Active development, docs |
Deploy in isolated OpenCode worktree:
1. Create worktree: orch/tool-eval-<name>
2. Install tool (npm install / docker pull)
3. Run test suite
4. Execute sample tasks
5. Measure performance (latency, memory)
6. Check for security issues (OpenSec scan)
If evaluation passes:
POST /v1/goals
{
"objective": "Integrate <tool-name> for <capability>",
"required_skills": ["open-toolbox", "open-mcp-scaffold"],
"approval_required": true,
"evidence": {
"evaluation_score": 85,
"sandbox_test": "passed",
"security_review": "clean",
"use_case": "web scraping for product data"
}
}
OpenOrchestrator routes to human for approval (if required).
After approval:
1. Add to docker-compose.mesh.yml (if containerized)
2. Register MCP server in OpenAgents config
3. Create skill (open-mcp-scaffold)
4. Update agent profiles with new capability
5. Store evaluation in OpenBrain
6. Log to OpenRec
# Tool Evaluation: <name>
## Metadata
- Source: <github/npm/docker url>
- Version: <version>
- License: <license>
- Last updated: <date>
- Stars/Downloads: <count>
## Functionality
- Purpose: <what it does>
- MCP tools: <list>
- Use cases: <scenarios>
## Integration
- Transport: stdio | HTTP | WebSocket
- Docker: yes | no
- Dependencies: <list>
- Config: <env vars / config files>
## Security
- OpenSec review: <pass/fail>
- Known CVEs: <none | list>
- Credential handling: <ephemeral | stored | none>
- Network access: <restricted | unrestricted>
## Performance
- Latency: <ms>
- Memory: <MB>
- Concurrent sessions: <count>
## Recommendation
- Score: <0-100>
- Verdict: integrate | reject | needs-review
- Notes: <rationale>
| Scenario | Action |
|---|---|
| Tool exists in OpenBrain evaluations | Use cached evaluation |
| Multiple candidates found | Evaluate top 3, pick highest score |
| Tool requires credentials | Escalate to human (decision gate) |
| Tool fails security review | Reject, search alternatives |
| Tool score < 70 | Flag for human review |
| Tool score ≥ 85 + security clean | Auto-approve (if policy allows) |
| No candidates found | Escalate to human (build custom) |
// OpenBrain tool evaluation storage
{
"type": "tool.evaluation",
"payload": {
"name": "obscura",
"version": "1.0.0",
"score": 92,
"use_cases": ["web scraping", "form automation"],
"security_review": "clean",
"integration_status": "approved"
}
}
// OpenRec audit
{
"type": "tool.integration.completed",
"payload": {
"tool": "obscura",
"capability": "browser_automation",
"profiles_updated": ["browser-automation", "web-scraper"],
"approval_id": "..."
}
}
1. Agent encounters task it cannot complete
2. Identifies capability gap
3. Searches for tools (OpenBrain → registries)
4. Evaluates candidates (sandbox + security)
5. Proposes integration (OpenOrchestrator)
6. Integrates after approval (OpenMesh-Wiring)
7. Stores evaluation (OpenBrain)
8. Next agent benefits from cached evaluation
This creates a flywheel effect: each tool integration makes future agents more capable.
open-mcp-scaffold - Add MCP tools to meshopen-brain - Store/retrieve tool evaluationsopen-sec - Security reviewopen-orchestrator-ops - Approval workflowopen-mesh-wiring - Integration into mesh