Files
client-projects/applications/claude-code-&-opencode.md
jerome 05eccd5b53 chore: consolidate Syslog Solution code into unified repository structure
- Moved scattered scripts, templates, and documentation into organized directories (applications/, scripts/, assets/).
- Updated .gitignore to strictly exclude secrets, state files, and IDE configs.
- Added comprehensive README.md outlining repository structure and best practices.
- Preserved all existing documentation and technical architecture files.
- Prepared infrastructure/ for AWS Org and Proxmox Terraform management.
2026-05-07 11:40:02 +00:00

1.5 KiB

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|