← ClaudeAtlas

minicode_contributinglisted

Guide for contributing to the minicode-sdk project. Use this skill when the user wants to contribute code, fix bugs, add features, or improve documentation for the minicode-sdk project.
juancok888/minicode-sdk · ★ 1 · AI & Automation · score 74
Install: claude install-skill juancok888/minicode-sdk
# Contributing to minicode-sdk ## Project Structure ``` minicode-sdk/ ├── src/minicode/ # Main source code │ ├── __init__.py # Package exports │ ├── agent.py # Core Agent implementation │ ├── config.py # Global configuration (MCP, Agent Instructions) │ ├── llm/ # LLM implementations │ │ ├── base.py # BaseLLM abstract class │ │ └── openai.py # OpenAI implementation │ ├── tools/ # Tool system │ │ ├── base.py # BaseTool abstract class │ │ ├── registry.py # Tool registry │ │ └── builtin/ # Built-in tools │ ├── mcp/ # MCP integration │ │ ├── client.py # MCP client │ │ └── transport.py # Transport layer │ ├── skills/ # Skills system │ │ └── loader.py # Skills loader │ └── session/ # Session management │ ├── message.py # Message types │ ├── session.py # Session class │ ├── manager.py # Session manager │ └── prompt.py # Prompt management ├── tests/ # Test suite ├── examples/ # Example scripts ├── .minicode/ # Project configuration │ ├── mcp.json # MCP server config │ ├── AGENT.md # Agent instructions │ └── skills/ # Project skills └── docs/ # Documentation ``` ## Configuration Files The `.minicode/` directory contains project-level config