Created complete documentation structure with: • Root README.md with repository overview • Documentation directory structure (01-05 + templates) • Migrated content from public repository • New operational documentation • Comprehensive templates for business workflows Sections: 1. 01-business-strategy/ - Business vision, market analysis, financials 2. 02-technical-architecture/ - Infrastructure, AI agents, deployment 3. 03-operations/ - Client onboarding, support processes 4. 04-customer-portal/ - Placeholder for client-facing docs 5. 05-development/ - Placeholder for dev standards 6. templates/ - 5 reusable business templates This commit establishes the foundation for the repository reorganization. Content review will be conducted separately.
53 lines
1.7 KiB
Markdown
53 lines
1.7 KiB
Markdown
1|# 01 - Claude Code & Opencode — Home
|
|
2|**Purpose:** Agent framework tutorials and best practices for Claude Code and OpenCode CLI.
|
|
3|
|
|
4|## Overview
|
|
5|
|
|
6|This section provides practical guides for deploying and managing AI coding agents using Claude Code and OpenCode CLI tools.
|
|
7|
|
|
8|## Contents
|
|
9|
|
|
10|### **Claude Code**
|
|
11|- Quick start and configuration
|
|
12|- Integration with IDEs
|
|
13|- Custom agent definitions
|
|
14|- Security best practices
|
|
15|
|
|
16|### **OpenCode**
|
|
17|- CLI setup and usage
|
|
18|- Extending with custom commands
|
|
19|- Multi-agent orchestration
|
|
20|- Production deployment patterns
|
|
21|
|
|
22|### **Best Practices**
|
|
23|- Context window management
|
|
24|- Agent sandboxing rules
|
|
25|- Error handling patterns
|
|
26|- Performance optimization
|
|
27|
|
|
28|## Quick Start
|
|
29|
|
|
30|```bash
|
|
31|# Install OpenCode CLI
|
|
32|pip install opencode-cli
|
|
33|
|
|
34|# Configure API keys
|
|
35|export OPENAI_API_KEY="***"
|
|
36|
|
|
37|# Run Claude Code
|
|
38|opencode run "Analyze this codebase for security issues"
|
|
39|
|
|
40|# Create custom agent
|
|
41|opencode agent create --name my-helper --template best-practices
|
|
42|```
|
|
43|
|
|
44|## Related Frameworks
|
|
45|
|
|
46|- **[MCP (Model Context Protocol)](../03\ -\ MCP\ \(Model\ Context\ Protocol\)/)** — Tool integration
|
|
47|- **[OpenClaw Framework](../02\ -\ OpenClaw\ Framework/)** — Multi-agent orchestration
|
|
48|- **[Autonomous AI Agents](../04\ -\ Autonomous\ AI\ Agents/)** — Advanced workflows
|
|
49|
|
|
50|---
|
|
51|
|
|
52|*Practical guides for Jerome & Theodore to implement AI coding agents in their daily workflow.*
|
|
53| |