Summary:\n- added Codex marketplace registry plus awareness/ethics/guardrails sub-plugins\n- mirrored Claude plugin commands/scripts/hooks into codex api/ci/code/collect/coolify/core/issue/perf/qa/review/verify\n- embedded Axioms of Life ethics modal, guardrails, and kernel files under codex/ethics\n- added Codex parity report, improvements list, and MCP integration plan\n- extended Gemini MCP tools and docs for Codex awareness
1.3 KiB
1.3 KiB
| name | description | args | |
|---|---|---|---|
| run | Trigger a CI workflow run |
|
Run Workflow
Manually trigger a GitHub Actions workflow.
Usage
/ci:run # Run default workflow
/ci:run tests # Run specific workflow
/ci:run release # Trigger release workflow
Process
-
List available workflows
gh workflow list -
Trigger workflow
gh workflow run tests.yml gh workflow run tests.yml --ref feature-branch -
Watch progress
gh run watch
Common Workflows
| Workflow | Trigger | Purpose |
|---|---|---|
tests.yml |
Push, PR | Run test suite |
lint.yml |
Push, PR | Run linters |
build.yml |
Push | Build artifacts |
release.yml |
Tag | Create release |
deploy.yml |
Manual | Deploy to environment |
Output
## Workflow Triggered
**Workflow**: tests.yml
**Branch**: feature/add-auth
**Run ID**: 12345
Watching progress...
⠋ Tests running... ✓ Setup (12s) ✓ Install dependencies (45s) ⠋ Run tests (running)
**Run completed in 2m 34s** ✓
Options
# Run with inputs (for workflows that accept them)
gh workflow run deploy.yml -f environment=staging
# Run on specific ref
gh workflow run tests.yml --ref main