AI-powered development automation with multi-backend execution (Codex/Claude/Gemini/OpenCode)
> /plugin marketplace add cexll/myclaude
Repo: cexll/myclaude
What's inside
AI-powered development automation with multi-backend execution (Codex/Claude/Gemini/OpenCode)
npx github:stellarlinkco/myclaude
| Module | Description | Documentation |
|---|---|---|
| do | Recommended - 5-phase feature development with codeagent orchestration | /do command |
| omo | Multi-agent orchestration with intelligent routing | /omo command |
| bmad | BMAD agile workflow with 6 specialized agents | /bmad-pilot command |
| requirements | Lightweight requirements-to-code pipeline | /requirements-pilot command |
| essentials | 11 core dev commands: ask, bugfix, code, debug, docs, enhance-prompt, optimize, refactor, review, test, think | /code, /debug, etc. |
| sparv | SPARV workflow (SpecifyโPlanโActโReviewโVault) | /sparv command |
| course | Course development (combines dev + product-requirements + test-cases) | Composite module |
| claudekit | ClaudeKit: do skill + global hooks (pre-bash, inject-spec, log-prompt) | Composite module |
Individual skills can be installed separately via npx github:stellarlinkco/myclaude --list (skills bundled in modules like do, omo, sparv are listed above):
| Skill | Description |
|---|---|
| browser | Browser automation for web testing and data extraction |
| codeagent | codeagent-wrapper invocation for multi-backend AI code tasks |
| codex | Direct Codex backend execution |
| dev | Lightweight end-to-end development workflow |
| gemini | Direct Gemini backend execution |
| product-requirements | Interactive PRD generation with quality scoring |
| prototype-prompt-generator | Structured UI/UX prototype prompt generation |
| skill-install | Install skills from GitHub with security scanning |
| test-cases | Comprehensive test case generation from requirements |
# Interactive installer (recommended)
npx github:stellarlinkco/myclaude
# List installable items (modules / skills / wrapper)
npx github:stellarlinkco/myclaude --list
# Detect installed modules and update from GitHub
npx github:stellarlinkco/myclaude --update
# Custom install directory / overwrite
npx github:stellarlinkco/myclaude --install-dir ~/.claude --force
--update detects already installed modules in the target install dir (defaults to ~/.claude, via installed_modules.json when present) and updates them from GitHub (latest release) by overwriting the module files.
Edit config.json to enable/disable modules:
{
"modules": {
"bmad": { "enabled": false },
"requirements": { "enabled": false },
"essentials": { "enabled": false },
"omo": { "enabled": false },
"sparv": { "enabled": false },
"do": { "enabled": true },
"course": { "enabled": false }
}
}
| Scenario | Recommended |
|---|---|
| Feature development (default) | /do |
| Bug investigation + fix | /omo |
| Large enterprise project | /bmad-pilot |
| Quick prototype | /requirements-pilot |
| Simple task | /code, /debug |
| Role | Agent | Responsibility |
|---|---|---|
| Orchestrator | Claude Code | Planning, context gathering, verification |
| Executor | codeagent-wrapper | Code editing, test execution (Codex/Claude/Gemini/OpenCode) |
| Backend | Required Features |
|---|---|
| Codex | codex e, --json, -C, resume |
| Claude | --output-format stream-json, -r |
| Gemini | -o stream-json, -y, -r |
| OpenCode | opencode, stdin mode |
~/.claude/
โโโ bin/codeagent-wrapper
โโโ CLAUDE.md (installed by default)
โโโ commands/ (from essentials module)
โโโ agents/ (from bmad/requirements modules)
โโโ skills/ (from do/omo/sparv/course modules)
โโโ hooks/ (from claudekit module)
โโโ settings.json (auto-generated, hooks config)
โโโ installed_modules.json (auto-generated, tracks modules)
Codex wrapper not found:
# Select: codeagent-wrapper
npx github:stellarlinkco/myclaude
Module not loading:
cat ~/.claude/installed_modules.json
npx github:stellarlinkco/myclaude --force
Backend CLI errors:
which codex && codex --version
which claude && claude --version
which gemini && gemini --version
| Issue | Solution |
|---|---|
| "Unknown event format" | Logging display issue, can be ignored |
| Gemini can't read .gitignore files | Remove from .gitignore or use different backend |
| Codex permission denied | Set approval_policy = "never" in ~/.codex/config.yaml |
See GitHub Issues for more.
AGPL-3.0 - see LICENSE
For commercial use without AGPL obligations, contact: support@stellarlink.co
.claude-plugin/
marketplace.json
.gitattributes
.github/
workflows/
ci.yml
release.yml
.gitignore
agents/
bmad/
.claude-plugin/
plugin.json
agents/
bmad-architect.md
bmad-dev.md
bmad-orchestrator.md
bmad-po.md
bmad-qa.md
bmad-review.md
bmad-sm.md
BMAD-WORKFLOW.md
commands/
bmad-pilot.md
README.md
development-essentials/
.claude-plugin/
plugin.json
agents/
bugfix-verify.md
bugfix.md
code.md
debug.md
optimize.md
commands/
ask.md
bugfix.md
code.md
debug.md
docs.md
enhance-prompt.md
optimize.md
refactor.md
review.md
test.md
think.md
DEVELOPMENT-COMMANDS.md
README.md
requirements/
.claude-plugin/
plugin.json
agents/
requirements-code.md
requirements-generate.md
requirements-review.md
requirements-testing.md
commands/
requirements-pilot.md
README.md
REQUIREMENTS-WORKFLOW.md
bin/
cli.js
CHANGELOG.md
cliff.toml
codeagent-wrapper/
.github/
workflows/
ci.yml
.gitignore
cmd/
codeagent-wrapper/
main.go
docs/
aec/
codeagent-wrapper-async-execution-refactor-aec.md
go.mod
go.sum
internal/
adapter/
cli/
architecture_test.go
cli.go
execute_test.go
execute.go
parallel_input_test.go
parallel_input.go
parallel_test.go
parallel.go
parse_test.go
parse.go
presentation_test.go
presentation.go
app/
agent_validation_test.go
app.go
architecture_test.go
backend_init.go
backend_registry.go
bench_test.go
cli.go
concurrent_stress_test.go
executor_alias.go
executor_concurrent_test.go
logger.go
main_integration_test.go
main_test.go
os_paths_test.go
parallel_config.go
parser.go
single_mode_runtime_test.go
single_mode_runtime.go
stdin_mode_test.go
task_runtime_adapter.go
terminal_test.go
test_aliases_test.go
tmpdir_test.go
tmpdir.go
utils_test.go
utils.go
wrapper_name.go
application/
cleanup/
cleanup_test.go
cleanup.go
output/
output_test.go
output.go
runtask/
config_plan_test.go
config_plan.go
runtask_test.go
runtask.go
spec.go
runtaskset/
parse_config_test.go
parse_config.go
runtaskset_test.go
runtaskset.go
backend/
backend_test.go
backend.go
claude.go
codex_paths_test.go
codex.go
gemini.go
opencode.go
registry.go
bootstrap/
bootstrap.go
config/
agent_config_test.go
agent.go
config.go
viper.go
domain/
task/
topology_test.go
topology.go
types.go
executor/
env_inject_test.go
env_logging_test.go
env_stderr_test.go
executor_runtime_test.go
executor.go
filter_test.go
filter.go
log_helpers.go
log_writer_limit_test.go
prompt_file_test.go
prompt.go
report_helpers.go
signal_unix.go
signal_windows.go
skills_test.go
stdin.go
task_types.go
testhooks.go
infrastructure/
backend/
backend_test.go
backend.go
janitor/
janitor_test.go
janitor.go
logstore/
logstore_test.go
logstore.go
logger/
active.go
logger_additional_coverage_test.go
logger_suffix_test.go
logger_test.go
logger.go
process_check_test.go
process_check.go
testhooks.go
wrapper_name.go
parser/
event.go
parser_opencode_test.go
parser_token_too_long_test.go
parser_unknown_event_test.go
parser.go
truncate_bytes_test.go
utils/
math_test.go
math.go
strings_test.go
strings.go
worktree/
worktree_test.go
worktree.go
Makefile
README_CN.md
README.md
scripts/
benchmark_claude.sh
USER_GUIDE.md
config.json
config.schema.json
go.work
go.work.sum
hooks/
hooks.json
inject-spec.py
log-prompt.py
pre-bash.py
install.bat
install.py
install.sh
LICENSE
Makefile
memorys/
CLAUDE.md
package.json
PLUGIN_README.md
README_CN.md
README.md
skills/
browser/
browser.zip
package-lock.json
package.json
scripts/
eval.cjs
nav.cjs
pick.cjs
screenshot.cjs
start.cjs
SKILL.md
codeagent/
SKILL.md
dev/
agents/
dev-plan-generator.md
SKILL.md
do/
agents/
code-architect.md
code-explorer.md
code-reviewer.md
hooks/
hooks.json
stop-hook.py
verify-loop.py
install.py
README.md
scripts/
get-context.py
setup-do.py
task.py
SKILL.md
harness/
hooks/
_harness_common.py
harness-claim.py
harness-renew.py
harness-sessionstart.py
harness-stop.py
harness-subagentstop.py
harness-teammateidle.py
hooks.json
self-reflect-stop.py
SKILL.md
tests/
e2e-100tasks.sh
test_hooks.py
omo/
.claude-plugin/
plugin.json
README.md
references/
develop.md
document-writer.md
explore.md
frontend-ui-ux-engineer.md
librarian.md
oracle.md
SKILL.md
product-requirements/
SKILL.md
prototype-prompt-generator/
references/
design-systems.md
prompt-structure.md
SKILL.md
README.md
skill-install/
references/
security_scan_prompt.md
SKILL.md
skill-rules.json
sparv/
.claude-plugin/
plugin.json
hooks/
hooks.json
README.md
references/
methodology.md
scripts/
archive-session.sh
changelog-update.sh
check-ehrb.sh
failure-tracker.sh
init-session.sh
lib/
state-lock.sh
reboot-test.sh
save-progress.sh
SKILL.md
test-cases/
references/
testing-principles.md
SKILL.md
templates/
models.json.example
test_install_path.bat
uninstall.py
uninstall.shFAQ
myclaude is a Claude Code plugin with 11 hand-picked skills for development work, indexed on Flowy. Install it with the command on its page. It includes browser, codeagent, dev. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.