mirror of
https://github.com/cexll/myclaude.git
synced 2026-02-05 02:30:26 +08:00
## Overview Complete implementation of enterprise-level workflow features including multi-backend execution (Codex/Claude/Gemini), GitHub issue-to-PR automation, hooks system, and comprehensive documentation. ## Major Changes ### 1. Multi-Backend Support (codeagent-wrapper) - Renamed codex-wrapper → codeagent-wrapper - Backend interface with Codex/Claude/Gemini implementations - Multi-format JSON stream parser (auto-detects backend) - CLI flag: --backend codex|claude|gemini (default: codex) - Test coverage: 89.2% **Files:** - codeagent-wrapper/backend.go - Backend interface - codeagent-wrapper/parser.go - Multi-format parser - codeagent-wrapper/config.go - CLI parsing with backend selection - codeagent-wrapper/executor.go - Process execution - codeagent-wrapper/logger.go - Async logging - codeagent-wrapper/utils.go - Utilities ### 2. GitHub Workflow Commands - /gh-create-issue - Create structured issues via guided dialogue - /gh-implement - Issue-to-PR automation with full dev lifecycle **Files:** - github-workflow/commands/gh-create-issue.md - github-workflow/commands/gh-implement.md - skills/codeagent/SKILL.md ### 3. Hooks System - UserPromptSubmit hook for skill activation - Pre-commit example with code quality checks - merge_json operation in install.py for settings.json merging **Files:** - hooks/skill-activation-prompt.sh|.js - hooks/pre-commit.sh - hooks/hooks-config.json - hooks/test-skill-activation.sh ### 4. Skills System - skill-rules.json for auto-activation - codeagent skill for multi-backend wrapper **Files:** - skills/skill-rules.json - skills/codeagent/SKILL.md - skills/codex/SKILL.md (updated) ### 5. Installation System - install.py: Added merge_json operation - config.json: Added "gh" module - config.schema.json: Added op_merge_json schema ### 6. CI/CD - GitHub Actions workflow for testing and building **Files:** - .github/workflows/ci.yml ### 7. Comprehensive Documentation - Architecture overview with ASCII diagrams - Codeagent-wrapper complete usage guide - GitHub workflow detailed examples - Hooks customization guide **Files:** - docs/architecture.md (21KB) - docs/CODEAGENT-WRAPPER.md (9KB) - docs/GITHUB-WORKFLOW.md (9KB) - docs/HOOKS.md (4KB) - docs/enterprise-workflow-ideas.md - README.md (updated with doc links) ## Test Results - All tests passing ✅ - Coverage: 89.2% - Security scan: 0 issues (gosec) ## Breaking Changes - codex-wrapper renamed to codeagent-wrapper - Default backend: codex (documented in README) ## Migration Guide Users with codex-wrapper installed should: 1. Run: python3 install.py --module dev --force 2. Update shell aliases if any 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
9.0 KiB
9.0 KiB
Codeagent-Wrapper User Guide
Multi-backend AI code execution wrapper supporting Codex, Claude, and Gemini.
Overview
codeagent-wrapper is a Go-based CLI tool that provides a unified interface to multiple AI coding backends. It handles:
- Multi-backend execution (Codex, Claude, Gemini)
- JSON stream parsing and output formatting
- Session management and resumption
- Parallel task execution with dependency resolution
- Timeout handling and signal forwarding
Installation
# Clone repository
git clone https://github.com/cexll/myclaude.git
cd myclaude
# Install via install.py (includes binary compilation)
python3 install.py --module dev
# Or manual installation
cd codeagent-wrapper
go build -o ~/.claude/bin/codeagent-wrapper
Quick Start
Basic Usage
# Simple task (default: codex backend)
codeagent-wrapper "explain @src/main.go"
# With backend selection
codeagent-wrapper --backend claude "refactor @utils.ts"
# With HEREDOC (recommended for complex tasks)
codeagent-wrapper --backend gemini - <<'EOF'
Implement user authentication:
- JWT tokens
- Password hashing with bcrypt
- Session management
EOF
Backend Selection
| Backend | Command | Best For |
|---|---|---|
| Codex | --backend codex |
General code tasks (default) |
| Claude | --backend claude |
Complex reasoning, architecture |
| Gemini | --backend gemini |
Fast iteration, prototyping |
Core Features
1. Multi-Backend Support
# Codex (default)
codeagent-wrapper "add logging to @app.js"
# Claude for architecture decisions
codeagent-wrapper --backend claude - <<'EOF'
Design a microservices architecture for e-commerce:
- Service boundaries
- Communication patterns
- Data consistency strategy
EOF
# Gemini for quick prototypes
codeagent-wrapper --backend gemini "create React component for user profile"
2. File References with @ Syntax
# Single file
codeagent-wrapper "optimize @src/utils.ts"
# Multiple files
codeagent-wrapper "refactor @src/auth.ts and @src/middleware.ts"
# Entire directory
codeagent-wrapper "analyze @src for security issues"
3. Session Management
# First task
codeagent-wrapper "add validation to user form"
# Output includes: SESSION_ID: 019a7247-ac9d-71f3-89e2-a823dbd8fd14
# Resume session
codeagent-wrapper resume 019a7247-ac9d-71f3-89e2-a823dbd8fd14 - <<'EOF'
Now add error messages for each validation rule
EOF
4. Parallel Execution
Execute multiple tasks concurrently with dependency management:
codeagent-wrapper --parallel <<'EOF'
---TASK---
id: backend_1701234567
workdir: /project/backend
---CONTENT---
implement /api/users endpoints with CRUD operations
---TASK---
id: frontend_1701234568
workdir: /project/frontend
---CONTENT---
build Users page consuming /api/users
---TASK---
id: tests_1701234569
workdir: /project/tests
dependencies: backend_1701234567, frontend_1701234568
---CONTENT---
add integration tests for user management flow
EOF
Parallel Task Format:
---TASK---- Starts task blockid: <unique_id>- Required, use<feature>_<timestamp>formatworkdir: <path>- Optional, defaults to current directorydependencies: <id1>, <id2>- Optional, comma-separated task IDs---CONTENT---- Separates metadata from task content
Features:
- Automatic topological sorting
- Unlimited concurrency for independent tasks
- Error isolation (failures don't stop other tasks)
- Dependency blocking (skip if parent fails)
5. Working Directory
# Execute in specific directory
codeagent-wrapper "run tests" /path/to/project
# With backend selection
codeagent-wrapper --backend claude "analyze code" /project/backend
# With HEREDOC
codeagent-wrapper - /path/to/project <<'EOF'
refactor database layer
EOF
Advanced Usage
Timeout Control
# Set custom timeout (1 hour = 3600000ms)
CODEX_TIMEOUT=3600000 codeagent-wrapper "long running task"
# Default timeout: 7200000ms (2 hours)
Timeout behavior:
- Sends SIGTERM to backend process
- Waits 5 seconds
- Sends SIGKILL if process doesn't exit
- Returns exit code 124 (consistent with GNU timeout)
Complex Multi-line Tasks
Use HEREDOC to avoid shell escaping issues:
codeagent-wrapper - <<'EOF'
Refactor authentication system:
Current issues:
- Password stored as plain text
- No rate limiting on login
- Sessions don't expire
Requirements:
1. Hash passwords with bcrypt
2. Add rate limiting (5 attempts/15min)
3. Session expiry after 24h
4. Add refresh token mechanism
Files to modify:
- @src/auth/login.ts
- @src/middleware/rateLimit.ts
- @config/session.ts
EOF
Backend-Specific Features
Codex:
# Best for code editing and refactoring
codeagent-wrapper --backend codex - <<'EOF'
extract duplicate code in @src into reusable helpers
EOF
Claude:
# Best for complex reasoning
codeagent-wrapper --backend claude - <<'EOF'
review @src/payment/processor.ts for:
- Race conditions
- Edge cases
- Security vulnerabilities
EOF
Gemini:
# Best for fast iteration
codeagent-wrapper --backend gemini "add TypeScript types to @api.js"
Output Format
Standard output includes parsed agent messages and session ID:
Agent response text here...
Implementation details...
---
SESSION_ID: 019a7247-ac9d-71f3-89e2-a823dbd8fd14
Error output (stderr):
ERROR: Error message details
Parallel execution output:
=== Parallel Execution Summary ===
Total: 3 | Success: 2 | Failed: 1
--- Task: backend_1701234567 ---
Status: SUCCESS
Session: 019a7247-ac9d-71f3-89e2-a823dbd8fd14
Implementation complete...
--- Task: frontend_1701234568 ---
Status: SUCCESS
Session: 019a7248-ac9d-71f3-89e2-a823dbd8fd14
UI components created...
--- Task: tests_1701234569 ---
Status: FAILED (exit code 1)
Error: dependency backend_1701234567 failed
Exit Codes
| Code | Meaning |
|---|---|
| 0 | Success |
| 1 | General error (missing args, no output) |
| 124 | Timeout |
| 127 | Backend command not found |
| 130 | Interrupted (Ctrl+C) |
| * | Passthrough from backend process |
Environment Variables
| Variable | Default | Description |
|---|---|---|
CODEX_TIMEOUT |
7200000 | Timeout in milliseconds |
Troubleshooting
Backend not found:
# Ensure backend CLI is installed
which codex
which claude
which gemini
# Check PATH
echo $PATH
Timeout too short:
# Increase timeout to 4 hours
CODEX_TIMEOUT=14400000 codeagent-wrapper "complex task"
Session ID not found:
# List recent sessions (backend-specific)
codex history
# Ensure session ID is copied correctly
codeagent-wrapper resume <session_id> "continue task"
Parallel tasks not running:
# Check task format
# Ensure ---TASK--- and ---CONTENT--- delimiters are correct
# Verify task IDs are unique
# Check dependencies reference existing task IDs
Integration with Claude Code
Use via the codeagent skill:
# In Claude Code conversation
User: Use codeagent to implement authentication
# Claude will execute:
codeagent-wrapper --backend codex - <<'EOF'
implement JWT authentication in @src/auth
EOF
Performance Tips
- Use parallel execution for independent tasks
- Choose the right backend for the task type
- Keep working directory specific to reduce context
- Resume sessions for multi-step workflows
- Use @ syntax to minimize file content in prompts
Best Practices
- HEREDOC for complex tasks - Avoid shell escaping nightmares
- Descriptive task IDs - Use
<feature>_<timestamp>format - Absolute paths - Avoid relative path confusion
- Session resumption - Continue conversations with context
- Timeout tuning - Set appropriate timeouts for task complexity
Examples
Example 1: Code Review
codeagent-wrapper --backend claude - <<'EOF'
Review @src/payment/stripe.ts for:
1. Security issues (API key handling, input validation)
2. Error handling (network failures, API errors)
3. Edge cases (duplicate charges, partial refunds)
4. Code quality (naming, structure, comments)
EOF
Example 2: Refactoring
codeagent-wrapper --backend codex - <<'EOF'
Refactor @src/utils:
- Extract duplicate code into helpers
- Add TypeScript types
- Improve function naming
- Add JSDoc comments
EOF
Example 3: Full-Stack Feature
codeagent-wrapper --parallel <<'EOF'
---TASK---
id: api_1701234567
workdir: /project/backend
---CONTENT---
implement /api/notifications endpoints with WebSocket support
---TASK---
id: ui_1701234568
workdir: /project/frontend
dependencies: api_1701234567
---CONTENT---
build Notifications component with real-time updates
---TASK---
id: tests_1701234569
workdir: /project
dependencies: api_1701234567, ui_1701234568
---CONTENT---
add E2E tests for notification flow
EOF