| description | AI integration with Ecotone — MCP Server, Agent Skills, and llms.txt |
|---|
Ecotone provides multiple ways for AI assistants and code editors to access up-to-date documentation. This ensures AI tools give accurate, current answers about Ecotone Framework.
Ecotone provides Agent Skills that give AI coding agents deep knowledge of Ecotone's patterns, conventions, and best practices. Skills follow the open Agent Skills standard (SKILL.md), making them compatible with a growing number of coding agents.
When installed, Ecotone Skills are automatically activated based on context — the AI agent detects when you're working with Ecotone and loads relevant guidance for Message Handlers, Aggregates, Event Sourcing, Asynchronous Processing, Workflows, Testing, and more.
Skills repository: github.com/ecotoneframework/skills
Install Ecotone Skills as a plugin:
/plugin install ecotone-skills@ecotone
This installs skills, slash commands, and subagents tailored for Ecotone development. Manage the plugin with:
/plugin disable ecotone-skills@ecotone
/plugin enable ecotone-skills@ecotone
/plugin uninstall ecotone-skills@ecotone
Cursor supports the SKILL.md standard natively. Install using the Vercel skills CLI:
npx skills add ecotoneframework/skills -a cursorOr place Ecotone skills manually in your project:
.cursor/skills/<skill-name>/SKILL.md
Windsurf's Cascade agent supports Agent Skills. Place skills in:
.windsurf/skills/<skill-name>/SKILL.md
GitHub Copilot supports Agent Skills in VS Code. Place skills in:
.github/skills/<skill-name>/SKILL.md
Cline supports skills since version 3.48.0. Enable them in Settings → Features → Enable Skills. Skills are placed in the standard .claude/skills/ directory.
Augment Code discovers skills automatically from multiple directories:
.augment/skills/<skill-name>/SKILL.md
.claude/skills/<skill-name>/SKILL.md
Kiro supports skills at user and workspace level:
.kiro/skills/<skill-name>/SKILL.md
Codex CLI reads skills from ~/.codex/skills/ and must be started with the --enable skills flag.
The MCP server provides direct access to Ecotone documentation for AI assistants that support the Model Context Protocol.
MCP Server URL:
https://docs.ecotone.tech/~gitbook/mcp
Click the link below to instantly add Ecotone MCP to your VSCode or Cursor:
Install Ecotone MCP in VSCode
Or manually add to your MCP settings:
{
"servers": {
"Ecotone": {
"url": "https://docs.ecotone.tech/~gitbook/mcp"
}
}
}Add to your Claude Desktop MCP configuration (claude_desktop_config.json):
{
"mcpServers": {
"Ecotone": {
"url": "https://docs.ecotone.tech/~gitbook/mcp"
}
}
}Context7 provides up-to-date documentation for LLMs and AI code editors. Ecotone documentation is available through Context7.
Add Context7 MCP to access Ecotone and other library documentation:
npx -y @upstash/context7-mcpThen query Ecotone documentation through your AI assistant with Context7 enabled.
Ecotone follows the llmstxt.org specification for AI-friendly documentation.
Available files:
| File | Description |
|---|---|
| llms.txt | Concise overview with key links |
| llms-full.txt | Extended documentation with code examples |
These files are automatically discovered by AI crawlers via robots.txt.
When using AI assistants with Ecotone:
- Enable MCP - Connect the Ecotone MCP server for real-time documentation access
- Reference specific features - Ask about specific patterns like "Ecotone Saga" or "Ecotone Event Sourcing"
- Include context - Mention your framework (Symfony/Laravel) for framework-specific guidance
- Verify code - Always test AI-generated code against the official documentation
Ecotone documentation integrates with:
| Tool | MCP | Skills | llms.txt |
|---|---|---|---|
| Claude Code | Yes | Yes (/plugin install) |
Yes |
| Cursor | Yes | Yes (.cursor/skills/) |
Yes |
| Windsurf | Yes | Yes (.windsurf/skills/) |
Yes |
| GitHub Copilot | Yes | Yes (.github/skills/) |
Yes |
| Cline | Yes | Yes (Settings → Enable Skills) | — |
| Augment Code | — | Yes (.augment/skills/) |
— |
| Kiro | — | Yes (.kiro/skills/) |
— |
| OpenAI Codex CLI | — | Yes (~/.codex/skills/) |
— |
| ChatGPT | — | — | Yes |
| Context7-enabled tools | Yes | — | — |