skills/FORGE-repo-intelligence/SKILL.md
SOLE controller skill for repository intelligence across the arifOS Federation. Exposes 12
npx skillsauth add ariffazil/openclaw-workspace FORGE-repo-intelligenceInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
One controller. Twelve modes. No duplicate logic. This skill is the SOLE repository intelligence controller. Smaller GitHub skills are consolidated as internal modules. Every mode produces the minimum evidence envelope defined below.
OBSERVE → MAP → DIFF → VERIFY → REVIEW → (JUDGE) → (ACT) → RE-PROBE → RECEIPT
Parenthesized stages (JUDGE, ACT) require mutation authority and are gated.
Every mode output must include:
repo:
ref:
commit_sha:
working_tree:
tag_delta:
changed_files:
critical_paths:
tests:
ci:
security:
contract_impacts:
runtime_probe:
risk_tier:
proposed_action:
rollback:
evidence_class:
unknowns:
Use UNMEASURED for any field where the probe failed — never substitute 0, clean, or healthy.
inventory — Repository censusOrchestrates: FORGE-github-ops
scope: all 7 federation repos
output:
- repo name, remote, default branch
- current branch, HEAD SHA, tag list
- working tree dirty/clean
- ahead/behind origin
- collaborator permissions
Tool path: forge_worktree per repo → forge_git_status → forge_git_log → GitHub API for permissions.
map — Architecture and critical pathsOrchestrates: code-wiki, aaa-agent-invariants
output:
- entry points, build commands, test runners
- contract files (schemas, registries, manifests)
- ownership (CODEOWNERS, organ responsibility)
- generated vs hand-maintained files
- critical paths that gate deployment
delta — Ref comparisonOrchestrates: FORGE-github-ops
input: base_ref, head_ref (branches, tags, or commits)
output:
- commit diff (count, authors, files changed)
- tag-vs-main drift detection
- deployed-vs-source comparison
- surface/manifest parity (tools/list vs tool_registry.json)
Never equate "clean" with "correct." A clean tree proves only no local changes.
pr_review — Efficient diff reviewOrchestrates: FORGE-pr-review, FORGE-pr-governance, secret-safety-scan
Efficient pattern (DO NOT load 20,000-line diffs first):
1. PR metadata (title, author, base/head, labels)
2. Changed filenames only → list_pr_changed_filenames
3. Identify critical files (contracts, schemas, registries, workflows, constitution)
4. Fetch only critical file patches → fetch_pr_file_patch
5. Inspect review threads → list_pull_request_review_threads
6. Inspect CI status → fetch_commit_workflow_runs
7. Produce risk verdict
Risk classification:
LOW: docs, comments, non-critical configMEDIUM: source changes in single organ, no contract impactHIGH: contract/schema/registry changes, cross-repo impactCRITICAL: constitutional, deployment, or secret-adjacentci_diagnose — Workflow analysisOrchestrates: FORGE-ci-diagnose
input: repo, commit SHA or PR number
output:
- workflow runs for commit
- job-level pass/fail breakdown
- step-level failure extraction
- log analysis for root cause
- classification: flake | dependency | regression | config | security
Truth gate: Never label a diagnostic-survival job as "passed." If lint fails but continue-on-error keeps the workflow green, report the truth.
issue_triage — Issue intelligenceOrchestrates: FORGE-issue-triage
input: repo, query filters
output:
- deduplicated issue list
- severity classification
- routing (which organ, which agent)
- linked PRs and cross-references
security — Supply-chain and secret auditOrchestrates: secret-safety-scan, parallel-authority-detection
checks:
- unpinned actions (movable tags → require SHA pinning)
- least-privilege permissions (permissions: {} declared)
- concurrency cancellation
- OIDC vs long-lived credentials
- artifact attestations
- CODEOWNERS coverage for constitutional/registry/schema/deployment files
- secret patterns in source
cross_repo_impact — Federation boundary detectionOrchestrates: code-wiki, FORGE-pr-review
input: changed files or PR
output:
- which organs are affected
- contract/schema/registry changes
- breaking vs additive changes
- required witness count per blast radius
- organ attestation impacts
release_audit — Tag, commit, CI, artifact, runtime parityOrchestrates: federation-release-attestation
output (per repo):
- tag → commit SHA
- commit → CI run status
- CI → artifact hash
- artifact → deployed commit
- deployed → runtime health probe
- tools/list match against registry
federation manifest:
release: "vYYYY.MM.DD-AAA"
repos:
arifOS: { commit, ci, artifact, runtime }
A-FORGE: { commit, ci, artifact, runtime }
AAA: { commit, ci, artifact, runtime }
GEOX: { commit, ci, artifact, runtime }
WEALTH: { commit, ci, artifact, runtime }
WELL: { commit, ci, artifact, runtime }
arif-sites:{ commit, ci, artifact, runtime }
Tag discipline: Never silently move a published federation tag. Treat tags as immutable receipts. If a tag is behind main, issue a new corrected tag rather than overwriting.
workflow_integrity — YAML validation and structural auditOrchestrates: internal (no sub-skill — pure structural validation)
input: repo path or PR number
checks:
- Parse all YAML workflows (Python yaml.safe_load_all)
- Reject duplicate job IDs
- Reject malformed expressions (${{ }})
- Reject reusable workflows referenced by moving branch names (@main, @v1)
- Reject overly broad permissions (write-all)
- Reject pull_request_target without explicit isolation
- Actionlint validation
- Unsafe pattern detection (shell injection, unpinned SHAs)
output:
- Pass/fail per workflow file
- Specific error locations (file:line)
- Blocking vs advisory classification
Truth gate: A workflow that survives parsing with duplicate keys is silently corrupt. GitHub may keep only one. This mode catches that BEFORE merge.
manifest_reconcile — Tool surface truth reconciliationOrchestrates: internal + runtime probes
input: organ name
output:
- README declared count vs live tools/list count
- FEDERATION.md declared count vs live
- AGENTS.md declared count vs live
- organ.yaml declared interfaces vs actual
- Staleness score (days since last verification)
- Recommendations: which source to update
- Canonical manifest update (AAA/federation/repos.yaml)
rule: runtime beats README beats FEDERATION.md
Truth gate: If README says 8 tools and runtime says 12, the README is wrong. Update it. Do not "reconcile" by averaging.
ruleset_audit — Branch protection and deployment policyOrchestrates: GitHub API
input: repo name or 'all'
output per repo:
- Branch protection status (PR required, force push, linear history, deletions)
- Required status checks configured
- CODEOWNERS coverage for critical paths (contracts, schemas, registries, deploy)
- Merge queue status
- Tag protection status
- Deployment environment protections
- Gaps identified with specific remediation steps
Remediation: Can auto-apply ruleset via gh api (requires repo admin). Default policy:
| Intelligence Task | GitHub Tools | A-FORGE Tools |
|---|---|---|
| Repository inventory | search_repositories, get_file_contents | forge_worktree, forge_git_status |
| Code discovery | search_code, get_file_contents | forge_filesystem_read, forge_filesystem_grep |
| History comparison | get_commit, list_commits | forge_git_log, forge_git_diff |
| PR discovery | search_pull_requests, pull_request_read | forge_github_search |
| Efficient diff | pull_request_read(method=get_files) → patch | — |
| CI diagnosis | list_commits → workflow runs | forge_log_tail |
| Issue intelligence | search_issues, issue_read | — |
| Build evidence | get_commit → status/check runs | — |
Mutation lane (requires change control): create_branch, create_or_update_file, create_pull_request, create_issue, pull_request_review_write, merge_pull_request, tag creation.
Default mutation pattern:
worktree → bounded branch → path-specific staging → tests → commit
→ draft PR → independent review → required checks
→ human/kernel authority → merge → post-merge verification
No agent should author, approve, and merge the same consequential change.
This skill replaces several overlapping GitHub micro-skills. The registry must:
github-runbook (formerly in _retired/ARCHIVE-github-runbook/, now canonically FORGE-github-workflow) must be removed from active registry.FORGE-pr-governance dependency on github-runbook must be updated to FORGE-repo-intelligence.DITEMPA BUKAN DIBERI — Forged, Not Given.
testing
OpenClaw edge agent bridge — operational triage, doctor, restart, and A2A bridge routing for the federation edge (Telegram surface). USE WHEN: "openclaw unhealthy", "gateway down", "edge bot not responding", "a2a bridge disconnected", "watchdog tripped", "openclaw doctor", "openclaw restart". NOT for token/security audit — use FORGE-telegram-audit.
tools
Generate images, videos, TTS, voice clone, and music via MiniMax MCP server. Use when user asks to "draw", "generate image", "create picture", "make a photo", "text to image", "image generation".
testing
Single load-bearing constitutional-judgment skill. Routes all F1–F13, verdict, hold, seal, scope, authority and floor-check calls through the live arif_judge surface. Replaces 7 overlapping predecessors (arifos-constitutional-judge, arifos-constitutional-judge, arifos-constitutional-judge, arifos-constitutional-judge, arifos-constitutional-judge, arifos-constitutional-judge, arifos-constitutional-judge).
development
MANDATORY LSP grounding gate BEFORE any code mutation on .ts, .py, .js, .tsx, .jsx files. Forces the agent to read real-time compiler diagnostics and structural project context before editing — eliminating blind guesses and anchoring every mutation in F2 (TRUTH). Routes through arifOS kernel (:8088) for centralized gate logic.