cexll
a30f434b5d
update all readme
2025-12-19 20:53:27 +08:00
swe-agent[bot]
93b72eba42
chore(v5.2.2): Bump version and clean up documentation
...
- Update version to 5.2.2 in README.md, README_CN.md, and codeagent-wrapper/main.go
- Remove non-existent documentation links from README.md (architecture.md, GITHUB-WORKFLOW.md, enterprise-workflow-ideas.md)
- Add coverage.out to .gitignore
Generated with swe-agent-bot
Co-Authored-By: swe-agent-bot <agent@swe-agent.ai >
2025-12-13 21:43:49 +08:00
swe-agent[bot]
2b7569335b
update readme
2025-12-13 15:29:12 +08:00
swe-agent[bot]
8554da6e2f
feat(v5.2.0): Improve release notes and installation scripts
...
**Main Changes**:
1. release.yml: Extract version release notes from CHANGELOG.md
2. install.bat: codex-wrapper → codeagent-wrapper
3. README.md: Update multi-backend architecture description
4. README_CN.md: Sync Chinese description
5. CHANGELOG.md: Complete v5.2.0 release notes in English
Generated with swe-agent-bot
Co-Authored-By: swe-agent-bot <agent@swe-agent.ai >
2025-12-13 12:53:28 +08:00
swe-agent[bot]
373d75cc36
update license
2025-12-13 12:31:49 +08:00
swe-agent[bot]
0bbcc6c68e
fix(codeagent-wrapper): add worker limit cap and remove legacy alias
...
- Add maxParallelWorkersLimit=100 cap for CODEAGENT_MAX_PARALLEL_WORKERS
- Remove scripts/install.sh (codex-wrapper legacy alias no longer needed)
- Fix README command example: /gh-implement -> /gh-issue-implement
- Add TestResolveMaxParallelWorkers unit test for limit validation
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com >
2025-12-12 22:06:23 +08:00
swe-agent[bot]
e1ad08fcc1
feat(codeagent-wrapper): 完整多后端支持与安全优化
...
修复 PR #53 中发现的问题,实现完整的多后端功能:
**多后端功能完整性**
- Claude/Gemini 后端支持 workdir (-C) 和 resume (--session-id) 参数
- 并行模式支持全局 --backend 参数和任务级 backend 配置
- 后端参数映射统一,支持 new/resume 两种模式
**安全控制**
- Claude 后端默认启用 --dangerously-skip-permissions 以支持自动化
- 通过 CODEAGENT_SKIP_PERMISSIONS 环境变量控制权限检查
- 不同后端行为区分:Claude 默认跳过,Codex/Gemini 默认启用
**并发控制**
- 新增 CODEAGENT_MAX_PARALLEL_WORKERS 环境变量限制并发数
- 实现 fail-fast context 取消机制
- Worker pool 防止资源耗尽,支持并发监控日志
**向后兼容**
- 版本号统一管理,提供 codex-wrapper 兼容脚本
- 所有默认行为保持不变
- 支持渐进式迁移
**测试覆盖**
- 总体覆盖率 93.4%(超过 90% 要求)
- 新增后端参数、并行模式、并发控制测试用例
- 核心模块覆盖率:backend.go 100%, config.go 97.8%, executor.go 96.4%
**文档更新**
- 更新 skills/codeagent/SKILL.md 反映多后端和安全控制
- 添加 CHANGELOG.md 记录重要变更
- 更新 README 版本说明和安装脚本
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com >
2025-12-11 16:09:33 +08:00
swe-agent[bot]
d7c514e869
Merge branch 'master' into rc/5.2
...
解决合并冲突:
- .github/workflows/release.yml: 统一使用codeagent-wrapper目录和输出名称
- codeagent-wrapper/main_test.go: 合并HEAD的新测试(Claude/Gemini事件解析)和master的测试改进
- 接受master的新文件: .gitignore, process_check_* 到codeagent-wrapper目录
- 确认删除: codex-wrapper/main.go (已重命名)
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com >
2025-12-09 16:03:44 +08:00
swe-agent[bot]
3ef288bfaa
feat: implement enterprise workflow with multi-backend support
...
## 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 >
2025-12-09 15:53:31 +08:00
徐文彬
95408e7fa7
修改windows安装说明
2025-12-07 01:43:47 +08:00
root
15b4176afb
支持window
2025-12-06 04:34:47 +00:00
cexll
1533e08425
Merge branch 'master' of github.com:cexll/myclaude
2025-12-05 10:28:24 +08:00
cexll
c89ad3df2d
docs: rewrite documentation for v5.0 modular architecture
...
完全重写 README 以反映新的模块化架构:
核心变更:
- 版本号升级至 5.0
- 聚焦 Claude Code + Codex 双智能体协作概念
- 重组工作流说明(Dev/BMAD/Requirements/Essentials)
- 新增模块化安装详细指南
- 移除过时的插件系统引用
- 添加工作流选择决策树
- 更新故障排查章节
文档结构:
1. 核心概念 - 双智能体架构
2. 快速开始 - python3 install.py
3. 工作流对比 - 适用场景清晰化
4. 安装配置 - config.json 操作类型
5. Codex 集成 - wrapper 使用和并行执行
6. 故障排查 - 常见问题解决方案
中英文文档同步更新。
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude <noreply@anthropic.com >
2025-12-05 10:27:21 +08:00
Gurdas Nijor
767b137c58
Add Smithery badge
2025-12-02 14:18:30 -08:00
cexll
3e30f4e207
fix: update repository URLs to cexll/myclaude
...
- Update install.sh REPO variable
- Update README.md installation instructions
- Remove obsolete PLUGIN_README.md
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude <noreply@anthropic.com >
2025-11-27 17:53:35 +08:00
cexll
c8a652ec15
Add codex-wrapper Go implementation
2025-11-27 14:33:13 +08:00
cexll
12e47affa9
update readme
2025-11-27 10:19:45 +08:00
cexll
612150f72e
update readme
2025-11-26 14:45:12 +08:00
cexll
cee467fc0e
update dev workflow
2025-11-25 21:31:31 +08:00
cexll
9a18a03061
update readme
2025-11-24 21:52:24 +08:00
swe-agent[bot]
86cb8f6611
update readme
2025-10-22 16:26:14 +08:00
swe-agent[bot]
9dea5d37ef
Optimize README structure - Solution A (modular)
...
- Reduced main README from 290 to 114 lines (English & Chinese)
- Created docs/ directory with 6 comprehensive guides:
- BMAD-WORKFLOW.md: Complete agile methodology
- REQUIREMENTS-WORKFLOW.md: Lightweight workflow
- DEVELOPMENT-COMMANDS.md: Command reference
- PLUGIN-SYSTEM.md: Installation guide
- QUICK-START.md: 5-minute tutorial
- ADVANCED-AGENTS.md: GPT-5 integration
- Main README now focuses on:
- Quick start (3-step installation)
- Plugin module overview (table format)
- Use cases (clear scenarios)
- Key features (concise bullets)
- Links to detailed documentation
- Follows Claude Code plugin style
- Improved readability and navigation
- Separated concerns by functionality
Fixes #13
🤖 Generated with [Claude Code](https://claude.ai/code )
Co-Authored-By: Claude <noreply@anthropic.com >
2025-10-20 07:24:53 +00:00
cexll
44b96c0498
Update README.md
2025-10-15 15:52:29 +08:00
ben chen
894952decd
Update README with v3.2 plugin system documentation
...
- Update version badge to v3.2 and add Plugin Ready badge
- Add plugin system as recommended installation method
- Document /plugin command usage and available plugins
- Add comprehensive plugin system section with feature details
- Update support section with plugin documentation references
🤖 Generated with [Claude Code](https://claude.ai/code )
Co-Authored-By: Claude <noreply@anthropic.com >
2025-10-10 11:30:35 +08:00
ben chen
6b3c27ee00
update readme
2025-09-17 17:24:33 +08:00
ben chen
e6a1c2c23e
Add Makefile for quick deployment and update READMEs
...
- 新增 Makefile 提供一键部署功能
- 支持 BMAD 和 Requirements 工作流快速安装
- 提供独立部署命令和测试功能
- 更新中英文 README 添加安装说明
🤖 Generated with [Claude Code](https://claude.ai/code )
Co-Authored-By: Claude <noreply@anthropic.com >
2025-09-17 17:18:27 +08:00
ben chen
d2ef679755
add bmad pilot
2025-08-11 17:25:27 +08:00
ben chen
6960e7af52
Docs: sync READMEs with actual commands/agents; remove nonexistent commands; enhance requirements-pilot with testing decision gate and options.
...
🤖 Generated with [Claude Code](https://claude.ai/code )
Co-Authored-By: Claude <noreply@anthropic.com >
2025-08-05 12:03:06 +08:00
ben chen
1d45442249
update readme
2025-08-02 23:15:39 +08:00
ben chen
e0d5b0955d
Add comprehensive documentation and multi-agent workflow system
...
- Add English and Chinese README.md with complete project documentation
- Add agents/ directory with 7 specialized sub-agent configurations
- Add spec-execution.md and spec-workflow.md commands
- Add .gitignore for Claude Code project structure
- Document two primary usage patterns: sub-agent workflows and custom commands
- Include architecture overview, quick start guide, and real-world examples
- Establish 95% quality gate automation with iterative improvement loops
🤖 Generated with [Claude Code](https://claude.ai/code )
Co-Authored-By: Claude <noreply@anthropic.com >
2025-07-28 10:26:19 +08:00