|
| 1 | +# Código Sin Siesta - Examples Repository |
| 2 | + |
| 3 | +Welcome to the companion code repository for [Código Sin Siesta](https://codigosinsiesta.com)! 🚀 |
| 4 | + |
| 5 | +This repository contains all the working code examples from our documentation and blog posts. Each example is organized by topic with complete setup instructions, dependencies, and runnable code. |
| 6 | + |
| 7 | +## 📑 Table of Contents |
| 8 | + |
| 9 | +- [What's Inside](#-whats-inside) |
| 10 | + - [AI Agents & MCP Workshop](#-ai-agents--mcp-workshop) |
| 11 | + - [AI Architecture](#️-ai-architecture) |
| 12 | + - [Tools & Utilities](#-tools--utilities) |
| 13 | +- [Getting Started](#-getting-started) |
| 14 | +- [Documentation](#-documentation) |
| 15 | +- [Prerequisites](#-prerequisites) |
| 16 | +- [Contributing](#-contributing) |
| 17 | +- [License](#-license) |
| 18 | +- [Links](#-links) |
| 19 | + |
| 20 | +## 📚 What's Inside |
| 21 | + |
| 22 | +All examples are organized by topic to match the documentation structure: |
| 23 | + |
| 24 | +### 🤖 AI Agents & MCP Workshop |
| 25 | + |
| 26 | +Complete examples from our AI Agents and Model Context Protocol workshop: |
| 27 | + |
| 28 | +- **[01-agente-tareas](./taller-ia-agentes-mcp/01-agente-tareas/)** - Task management agent with memory |
| 29 | +- **[02-agente-investigador](./taller-ia-agentes-mcp/02-agente-investigador/)** - Research agent with web search |
| 30 | +- **[03-mcp-servers](./taller-ia-agentes-mcp/03-mcp-servers/)** - Model Context Protocol server implementation |
| 31 | + |
| 32 | +📖 **[View Workshop Guide →](https://codigosinsiesta.com/docs/proyectos/taller-ia-agentes-mcp/)** |
| 33 | + |
| 34 | +### 🏗️ AI Architecture |
| 35 | + |
| 36 | +Examples demonstrating AI system architecture patterns and best practices for production systems. |
| 37 | + |
| 38 | +**[Browse AI Architecture Examples →](./arquitectura-ia/)** |
| 39 | + |
| 40 | +Topics covered: |
| 41 | +- Agent orchestration patterns |
| 42 | +- Prompt management and versioning |
| 43 | +- Error handling and retry strategies |
| 44 | +- Cost optimization techniques |
| 45 | +- Performance monitoring |
| 46 | + |
| 47 | +### 🔧 Tools & Utilities |
| 48 | + |
| 49 | +Practical tool implementations, utilities, and helper libraries for AI development. |
| 50 | + |
| 51 | +**[Explore Tools & Utilities →](./herramientas/)** |
| 52 | + |
| 53 | +Includes: |
| 54 | +- CLI tools for AI workflows |
| 55 | +- Reusable helper libraries |
| 56 | +- Integration scripts |
| 57 | +- Development utilities |
| 58 | + |
| 59 | +## 🚀 Getting Started |
| 60 | + |
| 61 | +Each example directory contains: |
| 62 | + |
| 63 | +- **README.md** - Setup instructions and explanation |
| 64 | +- **package.json** - Dependencies and scripts |
| 65 | +- **.env.example** - Required environment variables |
| 66 | +- **Complete source code** - Ready to run |
| 67 | + |
| 68 | +### Quick Start |
| 69 | + |
| 70 | +1. Clone this repository: |
| 71 | + ```bash |
| 72 | + git clone https://github.com/codigosinsiesta/codigosinsiesta-examples.git |
| 73 | + cd codigosinsiesta-examples |
| 74 | + ``` |
| 75 | + |
| 76 | +2. Navigate to an example: |
| 77 | + ```bash |
| 78 | + cd taller-ia-agentes-mcp/01-agente-tareas |
| 79 | + ``` |
| 80 | + |
| 81 | +3. Follow the README in that directory for setup instructions |
| 82 | + |
| 83 | +## 📁 Repository Structure |
| 84 | + |
| 85 | +``` |
| 86 | +codigosinsiesta-examples/ |
| 87 | +├── taller-ia-agentes-mcp/ # AI Agents & MCP Workshop |
| 88 | +│ ├── 01-agente-tareas/ # Task management agent |
| 89 | +│ ├── 02-agente-investigador/ # Research agent |
| 90 | +│ └── 03-mcp-servers/ # MCP server implementation |
| 91 | +├── arquitectura-ia/ # AI Architecture patterns |
| 92 | +└── herramientas/ # Tools & utilities |
| 93 | +``` |
| 94 | + |
| 95 | +## 📖 Documentation |
| 96 | + |
| 97 | +For detailed explanations and tutorials, visit: |
| 98 | + |
| 99 | +- **[Main Site](https://codigosinsiesta.com)** - Home page and latest updates |
| 100 | +- **[Documentation](https://codigosinsiesta.com/docs)** - Complete technical documentation |
| 101 | +- **[AI Agents Workshop](https://codigosinsiesta.com/docs/proyectos/taller-ia-agentes-mcp/)** - Workshop guide and tutorials |
| 102 | +- **[AI Architecture](https://codigosinsiesta.com/docs/categoria/arquitectura-ia)** - Architecture patterns and best practices |
| 103 | +- **[Tools & Utilities](https://codigosinsiesta.com/docs/categoria/herramientas)** - Tool development guides |
| 104 | +- **[Blog](https://codigosinsiesta.com/blog)** - Latest articles and updates |
| 105 | + |
| 106 | +## 💡 Prerequisites |
| 107 | + |
| 108 | +Most examples require: |
| 109 | + |
| 110 | +- **Node.js** 20.0 or higher |
| 111 | +- **npm** or **yarn** package manager |
| 112 | +- **API keys** for AI services (Anthropic, OpenAI, etc.) |
| 113 | + |
| 114 | +Specific requirements are listed in each example's README. |
| 115 | + |
| 116 | +## ❓ Need Help? |
| 117 | + |
| 118 | +- **Questions?** Check the [documentation](https://codigosinsiesta.com/docs) first |
| 119 | +- **Issues?** Open an [issue](https://github.com/codigosinsiesta/codigosinsiesta-examples/issues) on GitHub |
| 120 | +- **Suggestions?** We'd love to hear your ideas! |
| 121 | + |
| 122 | +## 🤝 Contributing |
| 123 | + |
| 124 | +Found a bug or want to improve an example? Contributions are welcome! |
| 125 | + |
| 126 | +1. Fork this repository |
| 127 | +2. Create a feature branch |
| 128 | +3. Make your changes |
| 129 | +4. Submit a pull request |
| 130 | + |
| 131 | +Please ensure your code follows the existing patterns and includes appropriate documentation. |
| 132 | + |
| 133 | +## 📝 License |
| 134 | + |
| 135 | +MIT License - feel free to use these examples in your own projects! |
| 136 | + |
| 137 | +## 🔗 Links |
| 138 | + |
| 139 | +- [Código Sin Siesta Website](https://codigosinsiesta.com) |
| 140 | +- [Documentation](https://codigosinsiesta.com/docs) |
| 141 | +- [Blog](https://codigosinsiesta.com/blog) |
| 142 | + |
| 143 | +--- |
| 144 | + |
| 145 | +Happy coding! 🎉 |
0 commit comments