Governed engineering runtime
Skill Abeer-ahmad-123/governed-engineering-runtime/skills/governed-engineering-runtime
Governed multi-agent engineering for Codex. Bootstrap the bundled ai runtime and initialize each target workspace; empty workspaces are supported.
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.
2 things to look at
- 26 days oldThe repository was created 26 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- 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.
What its author says it does
Copied from the file, not written here
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.
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.
Gives 0 of the 12 instructions most agent orchestration skills give in 833 tokens
Counted across 742 of the 995 authors here whose files we hold, read 2026-08-07
- Reference existing artifacts by path or URLin 53 of 742, across 25 files
- Run the full test suite after integrating changesin 51 of 742, across 19 files
- Dispatch one agent per independent problem domainin 50 of 742, across 17 files
- Verify fixes do not conflictin 45 of 742, across 13 files
- Include a suggested skills section in the documentin 45 of 742, across 17 files
- Redact sensitive informationin 41 of 742, across 11 files
- Save to the temporary directory of the operating systemin 39 of 742, across 10 files
- Tailor the document to user-provided focus argumentsin 39 of 742, across 9 files
- Spot check agent changes for systematic errorsin 34 of 742, across 7 files
- Write a handoff document summarising the current conversationin 31 of 742, across 6 files
- Assign each agent a specific scopein 23 of 742, across 8 files
- Provide specific scope and clear goalin 23 of 742, across 5 files
Said here and by no other author read
- confirm codex login status
- check if ai help succeeds
- change into intended target project root
- never initialize installed skill directory
- run ai init when project config is absent
- do not replace existing configuration
Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.