Governed engineering runtime
Skill Abeer-ahmad-123/governed-engineering-runtime/skills/governed-engineering-runtime
Operate a governed multi-agent software engineering runtime through a bootstrapped local ai CLI and the authenticated Codex CLI. Use when a repository change should pass through specification, architecture, specialist delegation, human approvals, implementation, independent review, security review, testing, persistent memory, and Git checkpoints rather than being edited immediately.From its SKILL.md
npx -y skills add Abeer-ahmad-123/governed-engineering-runtime --skill governed-engineering-runtimeAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
4.3 KB, 833 tokens by cl100k_base, as published. Nobody here has run it
Governed Engineering Runtime
Operate the target project root through the ai CLI. Treat this skill as a governance workflow, not
as extra programming knowledge. Installing this Codex skill copies instructions and bundled runtime
assets only; it does not install or expose the ai command.
Prepare
-
Confirm
codex login statussucceeds, or ask the user to runcodex login. -
Check whether
ai --helpsucceeds. -
If
aiis missing, ask before installing executable code. Resolve the current skill directory from this loadedSKILL.md, inspect the bundledruntime/source when required, then run:python3 <skill-directory>/scripts/bootstrap_runtime.pyThe bootstrap installs from the local runtime source bundled inside this skill. Pip may still resolve declared dependencies from configured package indexes. If the command installs successfully but
ai --helpstill fails, ask the user to activate the intended virtual environment if they installed into one. For a user-level Python install, ask them to add the Python user scripts directory toPATHonly after confirming theaiexecutable exists there:test -x "$(python3 -m site --user-base)/bin/ai" && export PATH="$(python3 -m site --user-base)/bin:$PATH" ai --help -
Change into the intended target project root, including an empty workspace when appropriate. Never initialize the installed skill directory.
-
Run
ai init .in that target project root when.ai/project.yamlis absent. Do not replace an existing configuration. -
Read references/runtime-checklist.md before the first run.
Execute
After successful project initialization, run an end-to-end governed change from the initialized target project root with:
ai build "<engineering objective>"
For human-controlled delivery, persist and approve each phase independently:
ai specify "<objective>"
ai approve specification
ai architect
ai approve architecture
ai delegate
ai approve delegation
ai implement
ai code-review
ai security-review
ai test
ai commit
Use ai status, ai tasks, and ai task use <task-id> to inspect or resume persisted work. Do not
bypass phase prerequisites. ai review is a convenience command for code review, security review,
and testing after implementation.
Empty target project roots are supported after ai init .. If a later run needs a branch,
git.auto_init: true allows the runtime to initialize Git in that exact project root before creating
its <git.branch_prefix>/<objective-slug> branch, such as ai/add-login-page. Branch slugs are
lowercase ASCII kebab-case derived from the objective after removing resolved build-stack text, fall
back to task, and are bounded to 96 characters. Existing local and already-present remote-tracking
refs are checked without fetching; collisions use the smallest available suffix from -2 through
-99. Run IDs remain unchanged for .ai/tasks, .ai/summaries, status, resume, and logs.
Allow the runtime to complete these stages in order:
- specification;
- architecture and specialist delegation;
- required human approval;
- implementation by a write-authorized agent;
- independent correctness and security review;
- testing against acceptance criteria;
- optional Git commit.
Declare task dependencies when work within a stage is ordered. Run only independent tasks in parallel; reroute repository context before starting dependent tasks.
Do not bypass an approval gate, grant write access to the controller, or reinterpret an infrastructure failure as incomplete engineering work. Preserve existing repository changes.
Report
At completion, report the run status, branch, commit when created, affected files, validation results,
remaining risks, and the location of persisted .ai/summaries and .ai/tasks records.
What ships with it: 66 files
135.0 KB alongside SKILL.md, 34 of them executable
evals/
- evals.json2.8 KB
references/
- runtime-checklist.md1.1 KB
runtime/
- ai_runtime/agents/__init__.pyruns83 B
- ai_runtime/agents/models.pyruns488 B
- ai_runtime/agents/registry.pyruns2.1 KB
- ai_runtime/cli/app.pyruns16.7 KB
- ai_runtime/cli/__init__.pyruns31 B
- ai_runtime/cli/__main__.pyruns43 B
- ai_runtime/context/__init__.pyruns82 B
- ai_runtime/context/router.pyruns3.9 KB
- ai_runtime/examples/__init__.pyruns48 B
- ai_runtime/examples/repositories/crm/README.md195 B
- ai_runtime/examples/skills/engineering-team/agents/architect.yaml335 B
- ai_runtime/examples/skills/engineering-team/agents/backend-engineer.yaml327 B
- ai_runtime/examples/skills/engineering-team/agents/controller.yaml478 B
- ai_runtime/examples/skills/engineering-team/agents/database-engineer.yaml336 B
- ai_runtime/examples/skills/engineering-team/agents/devops-engineer.yaml349 B
- ai_runtime/examples/skills/engineering-team/agents/implementer.yaml392 B
- ai_runtime/examples/skills/engineering-team/agents/product-manager.yaml291 B
- ai_runtime/examples/skills/engineering-team/agents/reviewer.yaml284 B
- ai_runtime/examples/skills/engineering-team/agents/security-engineer.yaml383 B
- ai_runtime/examples/skills/engineering-team/agents/tester.yaml351 B
- ai_runtime/examples/skills/engineering-team/agents/ui-engineer.yaml402 B
- ai_runtime/examples/skills/engineering-team/skill.yaml1011 B
- ai_runtime/examples/skills/engineering-team/workflows/architecture-phase.yaml254 B
- ai_runtime/examples/skills/engineering-team/workflows/architecture.yaml392 B
- ai_runtime/examples/skills/engineering-team/workflows/code-review.yaml230 B
- ai_runtime/examples/skills/engineering-team/workflows/delegation.yaml289 B
- ai_runtime/examples/skills/engineering-team/workflows/engineering.yaml1.1 KB
- ai_runtime/examples/skills/engineering-team/workflows/implementation-phase.yaml244 B
- ai_runtime/examples/skills/engineering-team/workflows/implementation.yaml462 B
- ai_runtime/examples/skills/engineering-team/workflows/review.yaml259 B
- ai_runtime/examples/skills/engineering-team/workflows/security-review.yaml247 B
- ai_runtime/examples/skills/engineering-team/workflows/specification.yaml248 B
- ai_runtime/examples/skills/engineering-team/workflows/testing.yaml233 B
- ai_runtime/examples/skills/fastapi/agents/fastapi-engineer.yaml362 B
- ai_runtime/examples/skills/fastapi/skill.yaml500 B
- ai_runtime/examples/skills/saas/agents/saas-architect.yaml368 B
- ai_runtime/examples/skills/saas/skill.yaml537 B
- LICENSE1.0 KB
26 more files not listed here. See all 66 in the repository.