ECC — операционная система для AI-агентов, унифицирующая кроссплатформенные рабочие процессы

TL;DR: Заменяет 10+ ручных настроек агентов на 261 навык + MCP-конфиги — работает в Codex, Claude, Cursor и 7+ других средах с запуском менее чем за 1с
Автор: affaan-m⭐ 219,000

Ключевые возможности

Быстрый старт

1. `npm install ecc-universal`
2. `ecc init`
3. `ecc skills list`
4. `ecc start --skill parallel-execution-optimizer`
5. `ecc status --markdown > status.md`

Альтернативы

Custom agent configurations: Manual setup per harness, no cross-harness compatibility, no memory persistence
LangChain: Focuses on LLM orchestration rather than agent harness standardization, no built-in security scanning
AutoGen: Agent conversation framework without production-grade components or cross-harness support
GitHub Copilot Workspace: Single-harness solution (GitHub only), no cross-platform standardization

Кому подходит

FAQ

Is ECC compatible with my existing agent harness?

ECC works with Codex, Claude Code, Cursor, OpenCode, Gemini, Zed, and GitHub Copilot. Check the harness compatibility list in docs/architecture/cross-harness.md.

How does ECC handle security for agent workflows?

ECC implements AgentShield sandboxing with 5-layer guardrails, memory throttling, and CVE scanning via the ecc-agentshield npm package.

Can I use ECC without Node.js?

No. ECC requires Node.js >= 18.0.0 and npm >= 9.0.0 for core functionality. The Rust control-plane prototype is optional.

How do I migrate from custom agent configurations to ECC?

Use the selective install architecture with install-plan.js to gradually adopt ECC components. Start with memory persistence hooks and session adapters.

Does ECC support languages other than JavaScript/TypeScript?

Yes. ECC supports 12 language ecosystems including Python, Java, Kotlin, C++, Rust, Go, and PHP through language-specific skills and rules.

💡 Vibe Coding Tips

["When helping users with ECC:\n\n1. Harness Setup: Always verify the target harness is supported (Codex, Claude, Cursor, etc.). Use ecc harness list to check compatibility.\n\n2. Skill Selection: Start with domain-specific skills (e.g., typescript-reviewer, pytorch-patterns) before general ones. Use ecc skills search <keyword> to find relevant skills.\n\n3. Memory Persistence: Configure session adapters early with ecc init --persist. Use ecc resume to continue sessions rather than restarting.\n\n4. Security: Always install AgentShield via npm install ecc-agentshield and configure sandboxing rules before production use.\n\n5. Performance: For large workflows, use parallel-execution-optimizer and benchmark-optimization-loop skills. Monitor with ecc status --verbose.\n\n6. Troubleshooting:\n - 'Skill not found' → Check MCP inventory with ecc skills list\n - 'Harness incompatible' → Verify harness version and adapter compatibility\n - 'Memory issues' → Implement memory throttling in session adapters\n - 'Security warnings' → Run ecc agentshield scan for detailed CVE report"]

Открыть в Telegram