Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add commands/alphaaiservice/cortex/gen-cigit clone --depth 1 https://github.com/alphaaiservice/cortexWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00047 | $0.08831 |
| Opus 5 | $0.00023 | $0.04415 |
| Sonnet 5 | $0.00009 | $0.01766 |
| Haiku 4.5 | $0.00005 | $0.00883 |
Grade A, and why
gen-ci scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
- **Meilisearch**: port 7700, master key set for tests, health check with `curl http://localhost:7700/health` How it starts
The opening of the file, as written. The whole thing — 822 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CI/CD Pipeline Generator
Generate production-quality CI/CD pipelines for: $ARGUMENTS
Parse $ARGUMENTS to determine:
- Platform:
github-actions(default if not specified),gitlab-ci, orbitbucket - Mode:
--fullflag means generate ALL pipeline files including Docker files, security scans, release automation, and deployment pipelines. Without--full, generate only the core CI pipeline (lint, test, build).
Step 1: Detect Project Stack
Run all detection tasks in parallel using Agent tool (mode = "bypassPermissions"). Scan the project root and subdirectories to build a complete technology profile.
1A: Detect Backend Stack
Search for these files and extract relevant information:
# Python detection
ls requirements.txt pyproject.toml setup.py setup.cfg Pipfile poetry.lock 2>/dev/null
# If Python found, detect framework
grep -l "fastapi\|FastAPI" requirements.txt pyproject.toml 2>/dev/null
grep -l "django\|Django" requirements.txt pyproject.toml 2>/dev/null
grep -l "flask\|Flask" requirements.txt pyproject.toml 2>/dev/null
# Node.js detection
ls package.json pnpm-lock.yaml yarn.lock package-lock.json bun.lockb 2>/dev/null
# Go detection
ls go.mod go.sum 2>/dev/null
# Rust detection
ls Cargo.toml Cargo.lock 2>/dev/null
# Java detection
ls pom.xml build.gradle build.gradle.kts 2>/dev/null
Record the Python version from pyproject.toml (requires-python) or .python-version file. Default to 3.11 and 3.12 for matrix testing.
Record the Node version from package.json (engines.node) or .nvmrc or .node-version. Default to 20 and 22 for matrix testing.
Record the Java version from build.gradle.kts (sourceCompatibility) or .java-version. Default to 21 for testing.
NestJS detection: If package.json contains @nestjs/core, this is a NestJS backend. Use pnpm commands and NestJS-specific CI steps (build, lint, test:e2e).
Spring Boot detection: If build.gradle.kts or pom.xml contains spring-boot, this is a Spring Boot backend. Use ./gradlew commands for build, test, and quality checks (checkstyle, spotbugs).
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 822 lines · 47 tokens per session scan A 961603d34b53
gen-ci is a command published in the GitHub repository alphaaiservice/cortex (1 stars, last pushed 26d ago), licensed MIT. It adds 47 tokens to every session and 8,831 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other commands, from other repositories
monitor-ci
Monitors pull request CI checks until they are resolved (pass or fail).
monitor-ci
You are the orchestrator for monitoring Nx Cloud CI pipeline executions and handling self-healing fixes. You spawn the ci-monitor-subagent subagent to poll CI status and make decisions based on the results.
actions
Command "actions" from openclaw/crabbox, covering actions, subcommands, hydrate, register and dispatch.
ci-report
Generate a CI failure report for PR $PRNUMORURL (or current branch if no argument given).
check-release-health
Summarize the CI health of an OpenShift release using live data from the openshift-ci-mcp server.
ci-health
Check all GitHub Actions workflows for failures, create P0 tickets, gate each ticket, and auto-fix safe failures.