{"slug":"gaasher-blue-team","name":"blue-team","description":"Use when the user has concrete failing cases in code or a guardrail/classifier/filter/prompt/API they own — a red-team failure catalogue OR a CI/CD test-failure report (failing pytest/JUnit tests) — and wants the target patched until those failures are closed without breaking what already works. It points straight at the failed cases (normalize any source with tools/ingest.py), fixes one root-cause class per iteration, and re-checks with tools/verify.py — oracle mode against a red-team oracle, or tests mode against the test suite — keeping a patch only if it closes a class while nothing that passed before regresses, else reverting; loops until every class is closed (dry) or the budget runs out, then opens a pull request with the patch set. The defensive fixer half of a find→fix setup. Not for discovering new failures (that is red-team), and not for editing the oracle, tests, or holdout that define ground truth.","long_description":"---\nname: blue-team\ndescription: >\n  Use when the user has concrete failing cases in code or a guardrail/classifier/filter/prompt/API they\n  own — a red-team failure catalogue OR a CI/CD test-failure report (failing pytest/JUnit tests) — and\n  wants the target patched until those failures are closed without breaking what already works. It points\n  straight at the failed cases (normalize any source with tools/ingest.py), fixes one root-cause class\n  per iteration, and re-checks with tools/verify.py — oracle mode against a red-team oracle, or tests\n  mode against the test suite — keeping a patch only if it closes a class while nothing that passed\n  before regresses, else reverting; loops until every class is closed (dry) or the budget runs out, then\n  opens a pull request with the patch set. The defensive fixer half of a find→fix setup. Not for\n  discovering new failures (that is red-team), and not for editing the oracle, tests, or holdout that\n  define ground truth.\ncompatibility: Requires Python 3.9+; git + the gh CLI for the pull-request handoff (degrades to a patch series).\nmetadata:\n  version: \"0.1.0\"\n---\n\n# Blue Team\n\nA **defensive fixer** loop — the inverse of `red-team`. The artifact is the **target, now writable**;\nthe feedback signal is two-part, like `optimize-loop`: a **gate that must hold** (nothing that passed\nbefore regresses) and a **metric that must drop** (the count of open failure classes, toward zero). You\npoint it at a set of **concrete failed cases** and fix them one root-cause class at a time. Each\niteration you patch one class, then run `tools/verify.py`, and keep the patch only if it closes the class\nwith no regression, else revert. You loop until every class is closed (**dry**) or the budget runs out,\nthen hand the patch set off as a pull request. This is the *fix* half of a find→fix setup (see\n[Pairing](#pairing)).\n\nThe failed cases come from a real source; `tools/ingest.py` normalizes any of them into one catalogue:\n- **`oracle` mode** — a `red-team` `failures.jsonl`: each case is an input where the target's verdict\n  disagrees with a ground-truth **oracle**. A case is closed when target and oracle now agree; a\n  regression is a benign `<holdout>` input that newly disagrees (most often a new over-block).\n- **`tests` mode** — a **CI/CD test-failure report** (`pytest --junitxml` / JUnit XML, or a list of\n  failing node ids): each case is a failing test. A case is closed when its test now passes; a\n  regression is any *other* test that was passing and now fails.\n\n## When to use\nUse to fix a concrete set of failing cases in code or a guardrail/classifier/filter/prompt/API the user\nowns — a red-team catalogue, or the failing tests from a CI run — driving the open-class count to zero\nwithout breaking what worked. A `class` is the root-cause group the loop closes as a unit (a red-team\ntechnique, or a CI failure area / test class).\n\nDefault: pick the mode that matches the source (`oracle` for red-team, `tests` for CI/CD). Escape hatch:\nin `oracle` mode with no separate functional test suite, the `<holdout>` alone is the regression guard;\nin `tests` mode the suite's own previously-passing tests are the guard. Not for finding new failures (run\n`red-team`), and not for editing the ground truth (the oracle, the tests, or the holdout).\n\n## Setup\nResolve bindings interactively. If `loop.run.yaml` exists, load it, confirm the values in one line, and\nskip to the loop. Otherwise: on Claude Code (the `AskUserQuestion` tool is available) infer a likely\nvalue per binding and recommend it; on other hosts ask each as a quoted prompt. Then write\n`loop.run.yaml` and confirm before creating any other files. Two worked configs:\n`examples/run.example.yaml` (oracle mode) and `examples/tests.run.yaml` (tests mode).\n\n| binding | meaning | default | how to infer |\n|---|---|---|---|\n| `<source>` | where the failed cases come from: `oracle` (red-team) or `tests` (CI/CD) | — | red-team `failures.jsonl` → `oracle`; failing pytest/JUnit → `tests` |\n| `<target_files>` | the file(s) the loop may edit to fix the target | — | the source/guardrail/classifier behind the failures |\n| `<catalogue>` | the failed cases to close, JSONL; build it with `tools/ingest.py` (see below) | `<sandbox_root>/catalogue.jsonl` | red-team's `<failures_log>`, or a JUnit report |\n| `<oracle_cmd>` | *(oracle mode)* ground-truth verdict (frozen), same stdin→verdict contract as red-team | — | a reference checker / policy impl |\n| `<holdout>` | *(oracle mode)* benign inputs that must keep passing (regression guard) | `<sandbox_root>/holdout.jsonl` | known-good inputs the oracle agrees on |\n| `<test_cmd>` | *(tests mode)* runs the suite and writes a JUnit XML; regressions read from it | — | `pytest --junitxml=<junit>` (or any runner that emits JUnit) |\n| `<junit>` | *(tests mode)* path to the JUnit XML `<test_cmd>` writes | `<sandbox_root>/junit.xml` | — |\n| `<iter_strategy>` | `branches` (one commit per kept fix → feeds the PR) or `snapshots` (folder per iter) | `branches` | dirty / non-git tree → snapshots |\n| `<pr_branch>` | branch the fixes land on and the PR opens from | `blue-team/<tag>` | today's date as `<tag>` |\n| `<sandbox_root>` | where snapshots + the ledger live | `./sandbox` | — |\n| `<budget>` | max iterations | 8 | — |\n| `<patience>` | give up on one class after N failed attempts → mark it a residual | 3 | — |\n\n`<skill_dir>` is this skill's installed folder; substitute the real path when writing `loop.run.yaml`.\n\n**Build the catalogue first** with `tools/ingest.py`, which normalizes any source into `{id, ..., class}`:\n```\npython3 <skill_dir>/tools/ingest.py --from red-team --in <failures.jsonl> --out <catalogue>   # oracle mode\npython3 <skill_dir>/tools/ingest.py --from junit    --in <report.xml>     --out <catalogue>   # tests mode\n```\n\n**The signal** each iteration is `tools/verify.py`, in the mode matching `<source>`:\n```\n# oracle mode — <target_cmd> runs <target_files>, e.g. \"python3 ./guardrail.py\"\npython3 <skill_dir>/tools/verify.py --target \"<target_cmd>\" --oracle \"<oracle_cmd>\" \\\n  --catalogue <catalogue> --holdout <holdout>\n# tests mode — <test_cmd> writes the JUnit report verify.py then reads\npython3 <skill_dir>/tools/verify.py --test-cmd \"<test_cmd>\" --junit <junit> --catalogue <catalogue>\n```\nEither way it prints one JSON object:\n`{mode, open_classes, closed_classes, open_count, closed_count, regressions, regression_count, still_failing}`.\n\n## The loop\nCopy this checklist and tick items off:\n\n- [ ] Iteration 0 — baseline: run `tools/verify.py` in the `<source>` mode; record the **open classes**\n      (should match the catalogue) as the current state and confirm `regression_count` is 0 — if it is\n      not, the catalogue or holdout is dirty, so fix that before fixing the target. Log the baseline row.\n      Save a pristine copy of `<target_files>` to `<sandbox_root>/iter0/` (snapshots mode) or note the\n      branch base (branches mode) — this is the **baseline** the final handoff diffs against, and also\n      the snapshot iteration 1 reverts to.\n- [ ] In `branches` mode, open the run on a fresh branch: `git checkout -b <pr_branch>`.\n- [ ] For iteration N (≥1): snapshot the **current, pre-patch** `<target_files>` to `iter<N>/` (or note\n      the git HEAD) *before*\n      editing, so a discard can restore exactly this state.\n- [ ] Pick **one** open class. Read its `still_failing` examples + the suggested fix from the catalogue,\n      and patch `<target_files>` at the **root cause** — one fix should close *all* payloads of that\n      class (e.g. normalize case once, not per-keyword). One class per iteration so each delta is\n      attributable.\n- [ ] Check the signal: run `tools/verify.py`. **Discard** — restore the snapshot / `git reset --hard` —\n      if `regression_count > 0` (the gate) or the targeted class is still open. `verify.py`'s regression\n      check *is* the gate: in oracle mode a regression is a newly-broken `<holdout>` case (e.g. a fix\n      that closes a bypass by over-blocking benign inputs); in tests mode it is any previously-passing\n      test the patch broke.\n- [ ] **Keep** if there are no regressions and `open_count` strictly dropped. In `branches` mode commit\n      it: `git commit -am \"close <class>: <one-line fix>\"`. Append a ledger row.\n- [ ] If a class resists `<patience>` attempts, mark it an **open residual** and move on rather than\n      thrashing. Stop when `open_count` = 0 (dry), at `<budget>`, or when every remaining class is a\n      residual. `<budget>` counts **attempts** (each keep *or* discard is one iteration), not classes\n      closed — a discard still consumes the budget.\n\nOn stop, restore the working files to the **best** iteration (most classes closed, zero regressions) and\nreport: classes closed vs residual, the failures resolved (oracle mode: the bypass/over-block split),\nand regressions avoided. Then open the pull request (see [Handoff](#handoff-the-pull-request)).\n\n**Fix toolkit.** In `tests` mode the patches are ordinary bug-fixes, grouped by failure area and applied\none area per iteration. In `oracle` mode (hardening a guardrail/filter), reach for these root-cause\npatterns, mirroring red-team's attack toolkit:\n- **Normalize before matching** — case-fold, de-leet (homoglyph/leet → letters), strip spacing and\n  punctuation, NFKC-normalize unicode. One normalization step closes case / leetspeak / spacing classes.\n- **Broaden the policy** — add missing synonyms/expansions to the blocked set (the `missing-synonym`\n  class), keyed to the oracle's categories, not ad-hoc strings.\n- **Tighten over-broad rules** — scope a match to whole words / the right context so benign inputs stop\n  tripping it (the `overblock` class), the most common source of regressions.\n\nMind the **interaction order** (both modes): make the narrowing/over-broad fix *before* a sweeping one.\nA fix that strips separators (closing `spacing`) can re-collapse a benign input into an over-broad\nsubstring and silently reopen an `overblock` class — and likewise a broad code change can reopen a test\na narrower fix had to protect. Fix the narrow/over-broad case first, then generalize.\n\n## Ledger\n`<sandbox_root>/ledger.tsv`, tab-separated, never commas in the description. `regr` = `regression_count`\nthis iteration (the gate: 0 is clean); `status` ∈ {`keep`,`discard`,`baseline`,`residual`}. Header\n`iter\tclass_targeted\tregr\topen_classes\tstatus\tdescription`:\n```\niter\tclass_targeted\tregr\topen_classes\tstatus\tdescription\n0\t-\t0\t5\tbaseline\tcatalogue: 5 open classes\n1\tcase-bypass\t0\t4\tkeep\tcase-fold the input before matching\n2\tleetspeak\t1\t4\tdiscard\tde-leet regex also over-blocked a holdout input (regression)\n3\tleetspeak\t0\t3\tkeep\tde-leet via translate table, holdout clean\n4\tmissing-synonym\t0\t2\tkeep\tadd passphrase/credentials/api-key to the policy set\n5\toverblock\t0\t1\tkeep\trequire whole-word \"secret key\", not bare \"secret\"\n6\tspacing\t0\t0\tkeep\tstrip non-alphanumerics before matching — dry\n```\nReport the **best** iteration (open_classes lowest with `regr` 0), not necessarily the last.\n\n## Constraints\n- **Only edit `<target_files>`.** The ground truth — the oracle + `<holdout>` (oracle mode) or the test\n  suite (tests mode) — and `tools/verify.py` are frozen; editing what measures the fix manufactures a\n  pass (same rule as red-team and optimize-loop). If the oracle or a test is itself wrong, that is a\n  finding to report, not something to patch here.\n- **Fix the root cause, not the payload.** One fix should close every item of a class; patching a single\n  example string while siblings still fail means the class is not closed. This mirrors red-team's class\n  accounting, so the two loops agree on what \"closed\" means.\n- **The regression gate is non-negotiable.** A patch that breaks something that passed before — a new\n  over-block/bypass (oracle mode) or a previously-passing test (tests mode) — is a regression, not\n  progress; revert it regardless of how many classes it closes. Prefer a narrower fix over a sweepin","tagline":"Use when the user has concrete failing cases in code or a guardrail/classifier/filter/prompt/API they own — a red-team failure catalogue OR a CI/CD test-failure report (failing pytest/JUnit tests) — and wants the target patched until those failures are closed without breaking wha","category":"research","tags":["agent-skill"],"author":"gaasher","verified":false,"attribution":{"status":"registry_indexed","statusLabel":"Registry indexed","shortLabel":"REGISTRY INDEXED","sourceLabel":"github candidate review","sourceDetail":"gaasher/Agent-Loop-Skills","creatorName":"gaasher","creatorUrl":"https://github.com/gaasher","sourceUrl":"https://github.com/gaasher/Agent-Loop-Skills/tree/main/loops/blue-team","indexedBy":"OpenAgentSkill community index","claimUrl":"https://www.openagentskill.com/skills/gaasher-blue-team#claim-this-skill","claimCta":"Claim this skill","trustNote":"This listing was indexed from public sources and is not marked official until a maintainer claim is approved.","publicNote":"Attribution links to the public repository or creator profile. Creators can claim the listing to update ownership signals."},"stats":{"stars":163,"forks":19,"verified_installs":0,"successful_runs":0,"total_outcomes":0,"rating":0,"review_count":0,"quality_score":35.9},"quality":{"score":63,"tier":"promising","label":"Promising","summary":"Useful candidate, but compare it with alternatives before adopting.","signals":[{"label":"GitHub stars","value":"163","tone":"neutral"},{"label":"Freshness","value":"2mo ago","tone":"positive"},{"label":"Install ready","value":"Yes","tone":"positive"},{"label":"License","value":"MIT","tone":"neutral"}],"warnings":["The skill relies on user-provided commands (oracle_cmd, test_cmd) which could be misconfigured, but this is expected and not a security flaw."]},"trust":{"version":"trust-score-v5","score":57,"base_score":65,"outcome_confidence":0,"tier":"risk","label":"Do not auto-install","summary":"Trust Score v5 found insufficient evidence for agent installation. Treat this as discovery material, not an executable recommendation.","recommendedAction":"Choose a stronger alternative or inspect the source manually before any install attempt.","decision":{"install_policy":"human_review_before_install","auto_install_allowed":false,"human_review_required":true,"sandbox_first":true,"agent_action":"Compare alternatives before installing.","reasoning":["57/100 Trust Score v5","65/100 Trust Score v4 baseline","Needs more real agent outcomes before unattended install","Install path is available","Review before production"],"review_required_when":["The workspace contains production secrets, payments, private customer data, or irreversible actions.","The install command requests shell, network, credential, database, or broad filesystem access.","Outcome evidence is missing, recently failed, or required human review.","Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace"]},"dimensions":[{"id":"github_adoption","label":"GitHub adoption","score":62,"weight":0.13,"status":"info","detail":"163 GitHub stars"},{"id":"repo_activity","label":"Stars/forks activity","score":57,"weight":0.08,"status":"warn","detail":"163 stars, 19 forks; issue activity unavailable in current metadata"},{"id":"maintenance","label":"Recent maintenance","score":88,"weight":0.14,"status":"pass","detail":"2mo since push"},{"id":"license","label":"License clarity","score":86,"weight":0.09,"status":"pass","detail":"MIT"},{"id":"documentation","label":"README/SKILL.md completeness","score":86,"weight":0.14,"status":"pass","detail":"Metadata includes enough usage and workflow context"},{"id":"dependency_risk","label":"Dependency/runtime risk","score":46,"weight":0.12,"status":"warn","detail":"command execution surface, credential or environment access"},{"id":"installability","label":"Install availability","score":92,"weight":0.1,"status":"pass","detail":"npx skills add gaasher/Agent-Loop-Skills --skill blue-team"},{"id":"install_safety","label":"Install command safety","score":92,"weight":0.1,"status":"pass","detail":"standard package or runtime install path"},{"id":"permission_surface","label":"Permission surface","score":22,"weight":0.07,"status":"fail","detail":"secrets or environment access, shell or command execution"},{"id":"repository","label":"Repository evidence","score":86,"weight":0.04,"status":"pass","detail":"https://github.com/gaasher/Agent-Loop-Skills/tree/main/loops/blue-team"},{"id":"review_status","label":"Review status","score":66,"weight":0.05,"status":"info","detail":"AI review data available"},{"id":"agent_outcomes","label":"Agent Proven outcomes","score":54,"weight":0.13,"status":"info","detail":"No agent outcome data yet"}],"checks":[{"status":"info","label":"GitHub adoption","detail":"163 GitHub stars"},{"status":"warn","label":"Stars/forks activity","detail":"163 stars, 19 forks; issue activity unavailable in current metadata"},{"status":"pass","label":"Recent maintenance","detail":"2mo since push"},{"status":"pass","label":"License clarity","detail":"MIT"},{"status":"pass","label":"README/SKILL.md completeness","detail":"Metadata includes enough usage and workflow context"},{"status":"warn","label":"Dependency/runtime risk","detail":"command execution surface, credential or environment access"},{"status":"pass","label":"Install availability","detail":"npx skills add gaasher/Agent-Loop-Skills --skill blue-team"},{"status":"pass","label":"Install command safety","detail":"standard package or runtime install path"},{"status":"fail","label":"Permission surface","detail":"secrets or environment access, shell or command execution"},{"status":"pass","label":"Repository evidence","detail":"https://github.com/gaasher/Agent-Loop-Skills/tree/main/loops/blue-team"},{"status":"info","label":"Review status","detail":"AI review data available"},{"status":"info","label":"Agent Proven outcomes","detail":"No agent outcome data yet"},{"status":"warn","label":"Ownership","detail":"No approved owner claim yet"},{"status":"info","label":"OpenAgentSkill usage","detail":"No local usage activity yet"},{"status":"info","label":"Agent outcomes","detail":"No agent outcome data yet"}],"strengths":["AI review approved","Install path is available","Repository evidence is available","Recently maintained repository","Install command has no obvious high-risk pattern","Outcome loop is ready but needs first real agent run"],"warnings":["The skill relies on user-provided commands (oracle_cmd, test_cmd) which could be misconfigured, but this is expected and not a security flaw.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 163 stars, 19 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution","No real agent outcome reports yet","Human review required before unattended installation"],"evidence":{"stars":"163 GitHub stars","repoActivity":"163 stars, 19 forks","lastPushed":"2mo since push","license":"MIT","repository":"https://github.com/gaasher/Agent-Loop-Skills/tree/main/loops/blue-team","install":"npx skills add gaasher/Agent-Loop-Skills --skill blue-team","installSafety":"standard package or runtime install path","permissionSurface":"secrets or environment access, shell or command execution","documentation":"Strong README/SKILL.md context","agentOutcomes":"No agent outcome data yet","agentProvenScore":0,"outcomeConfidence":"0%","installPolicy":"human_review_before_install"},"installReadiness":{"ready":true,"command":"npx skills add gaasher/Agent-Loop-Skills --skill blue-team","policy":"human_review_before_install","label":"Human review before install","notes":["Install path is available","Repository evidence is available","License is declared","No Agent Proven outcome evidence yet","2mo since push","Trust Score v5 requires review or sandbox-only use before install."]},"agentCompatibility":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"riskSummary":{"level":"medium","label":"Review before production","notes":["The skill relies on user-provided commands (oracle_cmd, test_cmd) which could be misconfigured, but this is expected and not a security flaw.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 163 stars, 19 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access"]},"outcomeEvidence":{"total":0,"successes":0,"failures":0,"notRelevant":0,"successRate":null,"installAttempts":0,"riskBlocked":0,"setupRequired":0,"installSuccessRate":null,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"recentSuccessRate":null,"recentFailureRate":null,"uniqueAgents":0,"agentProvenScore":0,"agentProvenLabel":"Needs first agent run","lastOutcomeAt":null,"label":"No agent outcome data yet"},"autoInstall":{"allowed":false,"sandboxRequired":true,"policy":"human_review_before_install","reason":"Compare alternatives before installing."},"outcome_loop":{"version":"openagentskill-agent-outcome-v4","required_after_install":true,"endpoint":"/api/agent/outcome","method":"POST","event_id_source":"feedback.event_id, install_receipt.resolve_event_id, or decision_packet.outcome_feedback.event_id","expected_outcomes":["success","failed","not_relevant","blocked_by_risk","setup_required"],"required_fields":["event_id","skill_slug","task"],"quality_fields":["task_success","output_quality","error_type","human_review_required","used_in_production","workspace","evidence_url","time_to_useful_ms","source_version"],"ranking_inputs_updated":["Trust Score v5 outcome confidence","Agent Proven Score","Resolve ranking task-fit evidence","Skill detail machine-readable metadata","Outcome leaderboard"]},"agent_contract":{"suited_tasks":["research","agent-skill"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"install_command":"npx skills add gaasher/Agent-Loop-Skills --skill blue-team","trust_score":57,"trust_version":"trust-score-v5","risk_level":"medium","do_not_use_when":["Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace"],"before_install":["Read the audit page and machine-readable metadata.","Confirm the install command, license, and permission surface fit the workspace.","Get explicit human approval or choose an alternative before installing."],"after_run":["Report the outcome to /api/agent/outcome using the resolve event id.","Include output_quality, workspace, human_review_required, and evidence_url when available.","Re-resolve before broad production rollout."]},"bestFor":["research","agent-skill"],"doNotUseFor":["Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace"],"knownRisks":["The skill relies on user-provided commands (oracle_cmd, test_cmd) which could be misconfigured, but this is expected and not a security flaw.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 163 stars, 19 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"],"backward_compatible":{"trust_score_v4":{"version":"trust-score-v4","score":65,"tier":"review","label":"Manual review","summary":"Potentially useful, but at least one trust signal needs human inspection."}}},"trust_score_v5":{"version":"trust-score-v5","score":57,"base_score":65,"outcome_confidence":0,"tier":"risk","label":"Do not auto-install","summary":"Trust Score v5 found insufficient evidence for agent installation. Treat this as discovery material, not an executable recommendation.","recommendedAction":"Choose a stronger alternative or inspect the source manually before any install attempt.","decision":{"install_policy":"human_review_before_install","auto_install_allowed":false,"human_review_required":true,"sandbox_first":true,"agent_action":"Compare alternatives before installing.","reasoning":["57/100 Trust Score v5","65/100 Trust Score v4 baseline","Needs more real agent outcomes before unattended install","Install path is available","Review before production"],"review_required_when":["The workspace contains production secrets, payments, private customer data, or irreversible actions.","The install command requests shell, network, credential, database, or broad filesystem access.","Outcome evidence is missing, recently failed, or required human review.","Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace"]},"dimensions":[{"id":"github_adoption","label":"GitHub adoption","score":62,"weight":0.13,"status":"info","detail":"163 GitHub stars"},{"id":"repo_activity","label":"Stars/forks activity","score":57,"weight":0.08,"status":"warn","detail":"163 stars, 19 forks; issue activity unavailable in current metadata"},{"id":"maintenance","label":"Recent maintenance","score":88,"weight":0.14,"status":"pass","detail":"2mo since push"},{"id":"license","label":"License clarity","score":86,"weight":0.09,"status":"pass","detail":"MIT"},{"id":"documentation","label":"README/SKILL.md completeness","score":86,"weight":0.14,"status":"pass","detail":"Metadata includes enough usage and workflow context"},{"id":"dependency_risk","label":"Dependency/runtime risk","score":46,"weight":0.12,"status":"warn","detail":"command execution surface, credential or environment access"},{"id":"installability","label":"Install availability","score":92,"weight":0.1,"status":"pass","detail":"npx skills add gaasher/Agent-Loop-Skills --skill blue-team"},{"id":"install_safety","label":"Install command safety","score":92,"weight":0.1,"status":"pass","detail":"standard package or runtime install path"},{"id":"permission_surface","label":"Permission surface","score":22,"weight":0.07,"status":"fail","detail":"secrets or environment access, shell or command execution"},{"id":"repository","label":"Repository evidence","score":86,"weight":0.04,"status":"pass","detail":"https://github.com/gaasher/Agent-Loop-Skills/tree/main/loops/blue-team"},{"id":"review_status","label":"Review status","score":66,"weight":0.05,"status":"info","detail":"AI review data available"},{"id":"agent_outcomes","label":"Agent Proven outcomes","score":54,"weight":0.13,"status":"info","detail":"No agent outcome data yet"}],"checks":[{"status":"info","label":"GitHub adoption","detail":"163 GitHub stars"},{"status":"warn","label":"Stars/forks activity","detail":"163 stars, 19 forks; issue activity unavailable in current metadata"},{"status":"pass","label":"Recent maintenance","detail":"2mo since push"},{"status":"pass","label":"License clarity","detail":"MIT"},{"status":"pass","label":"README/SKILL.md completeness","detail":"Metadata includes enough usage and workflow context"},{"status":"warn","label":"Dependency/runtime risk","detail":"command execution surface, credential or environment access"},{"status":"pass","label":"Install availability","detail":"npx skills add gaasher/Agent-Loop-Skills --skill blue-team"},{"status":"pass","label":"Install command safety","detail":"standard package or runtime install path"},{"status":"fail","label":"Permission surface","detail":"secrets or environment access, shell or command execution"},{"status":"pass","label":"Repository evidence","detail":"https://github.com/gaasher/Agent-Loop-Skills/tree/main/loops/blue-team"},{"status":"info","label":"Review status","detail":"AI review data available"},{"status":"info","label":"Agent Proven outcomes","detail":"No agent outcome data yet"},{"status":"warn","label":"Ownership","detail":"No approved owner claim yet"},{"status":"info","label":"OpenAgentSkill usage","detail":"No local usage activity yet"},{"status":"info","label":"Agent outcomes","detail":"No agent outcome data yet"}],"strengths":["AI review approved","Install path is available","Repository evidence is available","Recently maintained repository","Install command has no obvious high-risk pattern","Outcome loop is ready but needs first real agent run"],"warnings":["The skill relies on user-provided commands (oracle_cmd, test_cmd) which could be misconfigured, but this is expected and not a security flaw.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 163 stars, 19 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution","No real agent outcome reports yet","Human review required before unattended installation"],"evidence":{"stars":"163 GitHub stars","repoActivity":"163 stars, 19 forks","lastPushed":"2mo since push","license":"MIT","repository":"https://github.com/gaasher/Agent-Loop-Skills/tree/main/loops/blue-team","install":"npx skills add gaasher/Agent-Loop-Skills --skill blue-team","installSafety":"standard package or runtime install path","permissionSurface":"secrets or environment access, shell or command execution","documentation":"Strong README/SKILL.md context","agentOutcomes":"No agent outcome data yet","agentProvenScore":0,"outcomeConfidence":"0%","installPolicy":"human_review_before_install"},"installReadiness":{"ready":true,"command":"npx skills add gaasher/Agent-Loop-Skills --skill blue-team","policy":"human_review_before_install","label":"Human review before install","notes":["Install path is available","Repository evidence is available","License is declared","No Agent Proven outcome evidence yet","2mo since push","Trust Score v5 requires review or sandbox-only use before install."]},"agentCompatibility":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"riskSummary":{"level":"medium","label":"Review before production","notes":["The skill relies on user-provided commands (oracle_cmd, test_cmd) which could be misconfigured, but this is expected and not a security flaw.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 163 stars, 19 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access"]},"outcomeEvidence":{"total":0,"successes":0,"failures":0,"notRelevant":0,"successRate":null,"installAttempts":0,"riskBlocked":0,"setupRequired":0,"installSuccessRate":null,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"recentSuccessRate":null,"recentFailureRate":null,"uniqueAgents":0,"agentProvenScore":0,"agentProvenLabel":"Needs first agent run","lastOutcomeAt":null,"label":"No agent outcome data yet"},"autoInstall":{"allowed":false,"sandboxRequired":true,"policy":"human_review_before_install","reason":"Compare alternatives before installing."},"outcome_loop":{"version":"openagentskill-agent-outcome-v4","required_after_install":true,"endpoint":"/api/agent/outcome","method":"POST","event_id_source":"feedback.event_id, install_receipt.resolve_event_id, or decision_packet.outcome_feedback.event_id","expected_outcomes":["success","failed","not_relevant","blocked_by_risk","setup_required"],"required_fields":["event_id","skill_slug","task"],"quality_fields":["task_success","output_quality","error_type","human_review_required","used_in_production","workspace","evidence_url","time_to_useful_ms","source_version"],"ranking_inputs_updated":["Trust Score v5 outcome confidence","Agent Proven Score","Resolve ranking task-fit evidence","Skill detail machine-readable metadata","Outcome leaderboard"]},"agent_contract":{"suited_tasks":["research","agent-skill"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"install_command":"npx skills add gaasher/Agent-Loop-Skills --skill blue-team","trust_score":57,"trust_version":"trust-score-v5","risk_level":"medium","do_not_use_when":["Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace"],"before_install":["Read the audit page and machine-readable metadata.","Confirm the install command, license, and permission surface fit the workspace.","Get explicit human approval or choose an alternative before installing."],"after_run":["Report the outcome to /api/agent/outcome using the resolve event id.","Include output_quality, workspace, human_review_required, and evidence_url when available.","Re-resolve before broad production rollout."]},"bestFor":["research","agent-skill"],"doNotUseFor":["Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace"],"knownRisks":["The skill relies on user-provided commands (oracle_cmd, test_cmd) which could be misconfigured, but this is expected and not a security flaw.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 163 stars, 19 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"],"backward_compatible":{"trust_score_v4":{"version":"trust-score-v4","score":65,"tier":"review","label":"Manual review","summary":"Potentially useful, but at least one trust signal needs human inspection."}}},"trust_score_v4":{"version":"trust-score-v4","score":65,"tier":"review","label":"Manual review","summary":"Potentially useful, but at least one trust signal needs human inspection.","recommendedAction":"Inspect the repository, license, and recent activity before connecting it to agent workflows.","dimensions":[{"id":"github_adoption","label":"GitHub adoption","score":62,"weight":0.13,"status":"info","detail":"163 GitHub stars"},{"id":"repo_activity","label":"Stars/forks activity","score":57,"weight":0.08,"status":"warn","detail":"163 stars, 19 forks; issue activity unavailable in current metadata"},{"id":"maintenance","label":"Recent maintenance","score":88,"weight":0.14,"status":"pass","detail":"2mo since push"},{"id":"license","label":"License clarity","score":86,"weight":0.09,"status":"pass","detail":"MIT"},{"id":"documentation","label":"README/SKILL.md completeness","score":86,"weight":0.14,"status":"pass","detail":"Metadata includes enough usage and workflow context"},{"id":"dependency_risk","label":"Dependency/runtime risk","score":46,"weight":0.12,"status":"warn","detail":"command execution surface, credential or environment access"},{"id":"installability","label":"Install availability","score":92,"weight":0.1,"status":"pass","detail":"npx skills add gaasher/Agent-Loop-Skills --skill blue-team"},{"id":"install_safety","label":"Install command safety","score":92,"weight":0.1,"status":"pass","detail":"standard package or runtime install path"},{"id":"permission_surface","label":"Permission surface","score":22,"weight":0.07,"status":"fail","detail":"secrets or environment access, shell or command execution"},{"id":"repository","label":"Repository evidence","score":86,"weight":0.04,"status":"pass","detail":"https://github.com/gaasher/Agent-Loop-Skills/tree/main/loops/blue-team"},{"id":"review_status","label":"Review status","score":66,"weight":0.05,"status":"info","detail":"AI review data available"},{"id":"agent_outcomes","label":"Agent Proven outcomes","score":54,"weight":0.13,"status":"info","detail":"No agent outcome data yet"}],"checks":[{"status":"info","label":"GitHub adoption","detail":"163 GitHub stars"},{"status":"warn","label":"Stars/forks activity","detail":"163 stars, 19 forks; issue activity unavailable in current metadata"},{"status":"pass","label":"Recent maintenance","detail":"2mo since push"},{"status":"pass","label":"License clarity","detail":"MIT"},{"status":"pass","label":"README/SKILL.md completeness","detail":"Metadata includes enough usage and workflow context"},{"status":"warn","label":"Dependency/runtime risk","detail":"command execution surface, credential or environment access"},{"status":"pass","label":"Install availability","detail":"npx skills add gaasher/Agent-Loop-Skills --skill blue-team"},{"status":"pass","label":"Install command safety","detail":"standard package or runtime install path"},{"status":"fail","label":"Permission surface","detail":"secrets or environment access, shell or command execution"},{"status":"pass","label":"Repository evidence","detail":"https://github.com/gaasher/Agent-Loop-Skills/tree/main/loops/blue-team"},{"status":"info","label":"Review status","detail":"AI review data available"},{"status":"info","label":"Agent Proven outcomes","detail":"No agent outcome data yet"},{"status":"warn","label":"Ownership","detail":"No approved owner claim yet"},{"status":"info","label":"OpenAgentSkill usage","detail":"No local usage activity yet"},{"status":"info","label":"Agent outcomes","detail":"No agent outcome data yet"}],"strengths":["AI review approved","Install path is available","Repository evidence is available","Recently maintained repository","Install command has no obvious high-risk pattern"],"warnings":["The skill relies on user-provided commands (oracle_cmd, test_cmd) which could be misconfigured, but this is expected and not a security flaw.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 163 stars, 19 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"],"evidence":{"stars":"163 GitHub stars","repoActivity":"163 stars, 19 forks","lastPushed":"2mo since push","license":"MIT","repository":"https://github.com/gaasher/Agent-Loop-Skills/tree/main/loops/blue-team","install":"npx skills add gaasher/Agent-Loop-Skills --skill blue-team","installSafety":"standard package or runtime install path","permissionSurface":"secrets or environment access, shell or command execution","documentation":"Strong README/SKILL.md context","agentOutcomes":"No agent outcome data yet"},"installReadiness":{"ready":true,"command":"npx skills add gaasher/Agent-Loop-Skills --skill blue-team","policy":"human_review_before_install","label":"Human review before install","notes":["Install path is available","Repository evidence is available","License is declared","No Agent Proven outcome evidence yet","2mo since push"]},"agentCompatibility":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"riskSummary":{"level":"medium","label":"Review before production","notes":["The skill relies on user-provided commands (oracle_cmd, test_cmd) which could be misconfigured, but this is expected and not a security flaw.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 163 stars, 19 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access"]},"outcomeEvidence":{"total":0,"successes":0,"failures":0,"notRelevant":0,"successRate":null,"installAttempts":0,"riskBlocked":0,"setupRequired":0,"installSuccessRate":null,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"recentSuccessRate":null,"recentFailureRate":null,"uniqueAgents":0,"agentProvenScore":0,"agentProvenLabel":"Needs first agent run","lastOutcomeAt":null,"label":"No agent outcome data yet"},"autoInstall":{"allowed":false,"sandboxRequired":true,"policy":"human_review_before_install","reason":"Human review or sandbox validation is required before automatic installation."},"bestFor":["research","agent-skill"],"doNotUseFor":["Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace"],"knownRisks":["The skill relies on user-provided commands (oracle_cmd, test_cmd) which could be misconfigured, but this is expected and not a security flaw.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 163 stars, 19 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"]},"agent_proven":{"version":"agent-proven-v1","score":0,"tier":"unproven","label":"Needs first agent run","summary":"No agent outcome reports yet. Use Resolve, run one narrow sandbox task, then report the result.","metrics":{"totalOutcomes":0,"successfulOutcomes":0,"failedOutcomes":0,"installAttempts":0,"installSuccessRate":null,"successRate":null,"recentSuccessRate":null,"recentFailureRate":null,"riskBlocked":0,"setupRequired":0,"notRelevant":0,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"uniqueAgents":0,"lastOutcomeAt":null},"signals":[],"penalties":["No real agent outcome evidence yet"]},"outcome_stats":null,"safety":{"score":32,"level":"avoid_auto_install","label":"Avoid automatic install","safety_tier":{"tier":"blocked","label":"Blocked for auto-install","badge":"BLOCKED","summary":"This skill should not be selected by an agent without explicit human security review.","recommended_action":"Do not auto-install. Inspect the source, dependencies, and permission surface first.","auto_install_policy":"block","reasons":["Metadata combines secrets access with shell or command execution","High-risk permission hints: Shell or command execution, Secrets or environment access"]},"auto_install_allowed":false,"human_review_required":true,"blocked":true,"audit_risk":"needs_review","permission_hints":[{"id":"shell","label":"Shell or command execution","reason":"Skill metadata references terminal, CLI, shell, subprocess, or command execution workflows.","severity":"high"},{"id":"network","label":"Network access","reason":"Skill likely fetches remote pages, APIs, repositories, or external services.","severity":"medium"},{"id":"filesystem","label":"Filesystem access","reason":"Skill may read or write project files, documents, generated artifacts, or local workspace state.","severity":"medium"},{"id":"secrets","label":"Secrets or environment access","reason":"Skill metadata references credentials, tokens, environment variables, or secret-bearing workflows.","severity":"high"}],"policy_warnings":["High-risk permission hints: Shell or command execution, Secrets or environment access","Dependency or permission surface needs review"],"constraints_applied":{"max_risk":"medium","needs_install_command":true,"min_stars":0}},"safety_gate":{"tier":"blocked","label":"Blocked for auto-install","badge":"BLOCKED","auto_install_policy":"block","auto_install_allowed":false,"blocked":true,"human_review_required":true,"recommended_action":"Do not auto-install. Inspect the source, dependencies, and permission surface first.","reasons":["Metadata combines secrets access with shell or command execution","High-risk permission hints: Shell or command execution, Secrets or environment access"]},"eval":{"version":"openagentskill-skill-eval-v1","status":"failed","score":61,"risk_level":"high","decision":{"recommendation":"do_not_auto_install","reason":"Agent safety gate: This skill should not be selected by an agent without explicit human security review.","auto_install_allowed":false,"policy":"block","human_review_required":true},"blockers":["Agent safety gate: This skill should not be selected by an agent without explicit human security review.","Permission surface: secrets or environment access, shell or command execution"],"warnings":["Trust score: Potentially useful, but at least one trust signal needs human inspection.","Audit score: Needs review","High-risk permission hints: Shell or command execution, Secrets or environment access","Dependency or permission surface needs review","Permission surface may require sandboxing","The skill relies on user-provided commands (oracle_cmd, test_cmd) which could be misconfigured, but this is expected and not a security flaw.","No explicit sandboxing or permission prompts beyond the agent's own safeguards; the skill assumes the user has granted appropriate execution rights.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 163 stars, 19 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"],"validation_plan":["Inspect repository, README/SKILL.md, license, and recent commits before production use.","Install in an isolated workspace or sandbox with no production secrets available.","Run the smallest representative task and record files touched, commands run, network access, and outputs.","Compare the selected skill against at least one alternative when the eval status is review or failed.","Promote only after the agent reports a successful verification result and unresolved warnings are accepted."],"checks":[{"id":"task_fit","label":"Task fit","status":"pass","score":84,"required_for_auto_install":true,"detail":"Task wording matches this skill metadata.","evidence":["Evaluate blue-team before installing it in an agent workflow","research","Research agents workflows; Claude Code teams; builders willing to evaluate younger projects"]},{"id":"install_path","label":"Install path","status":"pass","score":92,"required_for_auto_install":true,"detail":"Install handoff is available.","evidence":["npx skills add gaasher/Agent-Loop-Skills --skill blue-team"]},{"id":"install_safety","label":"Install command safety","status":"pass","score":92,"required_for_auto_install":true,"detail":"standard package or runtime install path","evidence":["npx skills add gaasher/Agent-Loop-Skills --skill blue-team"]},{"id":"trust_score","label":"Trust score","status":"warn","score":65,"required_for_auto_install":true,"detail":"Potentially useful, but at least one trust signal needs human inspection.","evidence":["Manual review","163 GitHub stars","MIT"]},{"id":"audit_score","label":"Audit score","status":"warn","score":72,"required_for_auto_install":true,"detail":"Needs review","evidence":["Dependency or permission surface needs review"]},{"id":"agent_safety_gate","label":"Agent safety gate","status":"fail","score":32,"required_for_auto_install":true,"detail":"This skill should not be selected by an agent without explicit human security review.","evidence":["Do not auto-install. Inspect the source, dependencies, and permission surface first.","Metadata combines secrets access with shell or command execution"]},{"id":"readme_skillmd_completeness","label":"README/SKILL.md completeness","status":"pass","score":86,"required_for_auto_install":false,"detail":"Metadata includes enough usage and workflow context","evidence":["Strong README/SKILL.md context"]},{"id":"license_clarity","label":"License clarity","status":"pass","score":86,"required_for_auto_install":true,"detail":"MIT","evidence":["MIT"]},{"id":"recent_maintenance","label":"Recent maintenance","status":"pass","score":88,"required_for_auto_install":false,"detail":"2mo since push","evidence":["2mo since push"]},{"id":"permission_surface","label":"Permission surface","status":"fail","score":22,"required_for_auto_install":true,"detail":"secrets or environment access, shell or command execution","evidence":["Shell or command execution: high","Network access: medium","Filesystem access: medium"]},{"id":"alternatives","label":"Alternatives available","status":"info","score":55,"required_for_auto_install":false,"detail":"No close alternatives were found in the current shortlist.","evidence":[]}],"endpoints":{"web":"https://www.openagentskill.com/skills/gaasher-blue-team/evals","api":"/api/agent/evals?slug=gaasher-blue-team","text":"/api/agent/evals?slug=gaasher-blue-team&format=text"}},"agent_readable_metadata":{"version":"openagentskill-agent-metadata-v2","skill":{"slug":"gaasher-blue-team","name":"blue-team","description":"Use when the user has concrete failing cases in code or a guardrail/classifier/filter/prompt/API they own — a red-team failure catalogue OR a CI/CD test-failure report (failing pytest/JUnit tests) — and wants the target patched until those failures are closed without breaking what already works. It points straight at the failed cases (normalize any source with tools/ingest.py), fixes one root-cause class per iteration, and re-checks with tools/verify.py — oracle mode against a red-team oracle, or tests mode against the test suite — keeping a patch only if it closes a class while nothing that passed before regresses, else reverting; loops until every class is closed (dry) or the budget runs out, then opens a pull request with the patch set. The defensive fixer half of a find→fix setup. Not for discovering new failures (that is red-team), and not for editing the oracle, tests, or holdout that define ground truth.","category":"research","url":"https://www.openagentskill.com/skills/gaasher-blue-team","repository":"https://github.com/gaasher/Agent-Loop-Skills/tree/main/loops/blue-team","github_repo":"gaasher/Agent-Loop-Skills"},"suited_tasks":["Research agents workflows","Claude Code teams","builders willing to evaluate younger projects","Search sources","Extract claims","Synthesize findings","Inspect repository metadata","Compare code changes"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI","CLI"],"install":{"command":"npx skills add gaasher/Agent-Loop-Skills --skill blue-team","ready":true,"targets":[{"id":"openagentskill-cli","label":"CLI","kind":"command","value":"npx --yes https://github.com/Leon-Drq/openagentskill/releases/download/cli-v0.3.0/openagentskill-0.3.0.tgz add gaasher-blue-team"},{"id":"codex","label":"Codex","kind":"agent-prompt","value":"Install the \"blue-team\" agent skill from https://github.com/gaasher/Agent-Loop-Skills/tree/main/loops/blue-team. Read its SKILL.md or equivalent instructions first, install only the files needed for this workspace, and summarize any required setup before using it. Skill purpose: Use when the user has concrete failing cases in code or a guardrail/classifier/filter/prompt/API they own — a red-team failure catalogue OR a CI/CD test-failure report (failing pytest/JUnit tests) — and wants the target patched until those failures are closed without breaking what already works. It points straight at the failed cases (normalize any source with tools/ingest.py), fixes one root-cause class per iteration, and re-checks with tools/verify.py — oracle mode against a red-team oracle, or tests mode against the test suite — keeping a patch only if it closes a class while nothing that passed before regresses, else reverting; loops until every class is closed (dry) or the budget runs out, then opens a pull request with the patch set. The defensive fixer half of a find→fix setup. Not for discovering new failures (that is red-team), and not for editing the oracle, tests, or holdout that define ground truth. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"gaasher-blue-team\",\"task\":\"Install blue-team\",\"agent\":\"codex\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."},{"id":"claude-code","label":"Claude Code","kind":"agent-prompt","value":"Add \"blue-team\" as a Claude Code skill from https://github.com/gaasher/Agent-Loop-Skills/tree/main/loops/blue-team. Inspect the skill instructions, place the reusable skill files in the appropriate local skills location for this project, and report the activation steps. Skill purpose: Use when the user has concrete failing cases in code or a guardrail/classifier/filter/prompt/API they own — a red-team failure catalogue OR a CI/CD test-failure report (failing pytest/JUnit tests) — and wants the target patched until those failures are closed without breaking what already works. It points straight at the failed cases (normalize any source with tools/ingest.py), fixes one root-cause class per iteration, and re-checks with tools/verify.py — oracle mode against a red-team oracle, or tests mode against the test suite — keeping a patch only if it closes a class while nothing that passed before regresses, else reverting; loops until every class is closed (dry) or the budget runs out, then opens a pull request with the patch set. The defensive fixer half of a find→fix setup. Not for discovering new failures (that is red-team), and not for editing the oracle, tests, or holdout that define ground truth. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"gaasher-blue-team\",\"task\":\"Install blue-team\",\"agent\":\"claude-code\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."},{"id":"cursor","label":"Cursor","kind":"agent-prompt","value":"Turn \"blue-team\" from https://github.com/gaasher/Agent-Loop-Skills/tree/main/loops/blue-team into a reusable Cursor project rule or agent instruction. Preserve the core workflow, adapt paths to this repo, and keep the rule scoped to tasks where it is relevant. Skill purpose: Use when the user has concrete failing cases in code or a guardrail/classifier/filter/prompt/API they own — a red-team failure catalogue OR a CI/CD test-failure report (failing pytest/JUnit tests) — and wants the target patched until those failures are closed without breaking what already works. It points straight at the failed cases (normalize any source with tools/ingest.py), fixes one root-cause class per iteration, and re-checks with tools/verify.py — oracle mode against a red-team oracle, or tests mode against the test suite — keeping a patch only if it closes a class while nothing that passed before regresses, else reverting; loops until every class is closed (dry) or the budget runs out, then opens a pull request with the patch set. The defensive fixer half of a find→fix setup. Not for discovering new failures (that is red-team), and not for editing the oracle, tests, or holdout that define ground truth. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"gaasher-blue-team\",\"task\":\"Install blue-team\",\"agent\":\"cursor\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."}],"handoff_url":"https://www.openagentskill.com/api/skills/gaasher-blue-team/install","manifest_url":"https://www.openagentskill.com/api/registry/manifest/gaasher-blue-team"},"trust":{"score":65,"label":"Manual review","version":"trust-score-v4","install_policy":"human_review_before_install","evidence":{"stars":"163 GitHub stars","repoActivity":"163 stars, 19 forks","lastPushed":"2mo since push","license":"MIT","repository":"https://github.com/gaasher/Agent-Loop-Skills/tree/main/loops/blue-team","install":"npx skills add gaasher/Agent-Loop-Skills --skill blue-team","installSafety":"standard package or runtime install path","permissionSurface":"secrets or environment access, shell or command execution","documentation":"Strong README/SKILL.md context","agentOutcomes":"No agent outcome data yet"},"outcome_evidence":{"total":0,"successes":0,"failures":0,"not_relevant":0,"success_rate":null,"recent_success_rate":null,"recent_failure_rate":null,"install_attempts":0,"install_success_rate":null,"risk_blocked":0,"setup_required":0,"avg_output_quality":null,"production_outcomes":0,"last_outcome_at":null,"label":"No agent outcome data yet"},"auto_install":{"allowed":false,"sandbox_required":true,"reason":"Human review or sandbox validation is required before automatic installation."},"best_for":["research","agent-skill"],"known_risks":["The skill relies on user-provided commands (oracle_cmd, test_cmd) which could be misconfigured, but this is expected and not a security flaw.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 163 stars, 19 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"]},"agent_proven":{"version":"agent-proven-v1","score":0,"tier":"unproven","label":"Needs first agent run","summary":"No agent outcome reports yet. Use Resolve, run one narrow sandbox task, then report the result.","metrics":{"totalOutcomes":0,"successfulOutcomes":0,"failedOutcomes":0,"installAttempts":0,"installSuccessRate":null,"successRate":null,"recentSuccessRate":null,"recentFailureRate":null,"riskBlocked":0,"setupRequired":0,"notRelevant":0,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"uniqueAgents":0,"lastOutcomeAt":null},"signals":[],"penalties":["No real agent outcome evidence yet"]},"audit":{"score":72,"risk_level":"needs_review","risk_label":"Needs review","warnings":["Dependency or permission surface needs review","Permission surface may require sandboxing","The skill relies on user-provided commands (oracle_cmd, test_cmd) which could be misconfigured, but this is expected and not a security flaw.","No explicit sandboxing or permission prompts beyond the agent's own safeguards; the skill assumes the user has granted appropriate execution rights.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 163 stars, 19 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access"]},"safety_gate":{"tier":"blocked","label":"Blocked for auto-install","auto_install_policy":"block","auto_install_allowed":false,"human_review_required":true,"blocked":true,"recommended_action":"Do not auto-install. Inspect the source, dependencies, and permission surface first."},"quality":{"score":63,"label":"Promising"},"supply":{"track":"Coding and developer agents","scenario":"GitHub automation","maintenance":"2mo since push","risk":"Needs review"},"alternative_skills":[],"do_not_use_when":["teams that need a vendor-supported SLA","production agents without a repository review","The skill relies on user-provided commands (oracle_cmd, test_cmd) which could be misconfigured, but this is expected and not a security flaw.","No OpenAgentSkill engagement data yet","High-risk permission hints: Shell or command execution, Secrets or environment access","Dependency or permission surface needs review","Permission surface may require sandboxing","No explicit sandboxing or permission prompts beyond the agent's own safeguards; the skill assumes the user has granted appropriate execution rights."],"agent_contract":{"task_input":"Use blue-team in an agent workflow","recommended_action":"Do not auto-install. Inspect the source, dependencies, and permission surface first.","install_policy":"block","minimum_review_before_use":["Trust: 65/100 Manual review","Audit: 72/100 Needs review","Safety: 32/100 Avoid automatic install","Review repository, license, install command, and permission surface before production use."],"expected_agent_output":{"selected_skill":"gaasher-blue-team (blue-team)","install_command":"npx skills add gaasher/Agent-Loop-Skills --skill blue-team","risk_summary":"Needs review; Blocked for auto-install; Review before production","verification_result":"Report the smallest successful task, files touched, warnings, and any missing setup."}},"outcome_feedback":{"endpoint":"https://www.openagentskill.com/api/agent/outcome","method":"POST","requires_resolve_event_id":true,"event_id_source":"Use install_receipt.outcome_feedback.event_id or feedback.event_id returned by /api/agent/resolve for the current task.","expected_outcomes":["success","failed","not_relevant","blocked_by_risk","setup_required"],"payload_template":{"event_id":"<install_receipt.outcome_feedback.event_id or feedback.event_id from /api/agent/resolve>","skill_slug":"gaasher-blue-team","task":"Use blue-team in an agent workflow","agent":"codex","outcome":"success","install_used":true,"risk_blocked":false,"setup_required":false,"task_success":true,"output_quality":4,"error_type":null,"human_review_required":false,"workspace":"sandbox","time_to_useful_ms":120000,"notes":"Report the smallest successful task, setup friction, files touched, and risk notes."}},"endpoints":{"web":"https://www.openagentskill.com/skills/gaasher-blue-team","api":"https://www.openagentskill.com/api/agent/skills/gaasher-blue-team","audit":"https://www.openagentskill.com/skills/gaasher-blue-team/audit","eval":"https://www.openagentskill.com/api/agent/evals?slug=gaasher-blue-team&task=Use%20blue-team%20in%20an%20agent%20workflow&max_risk=medium","resolve":"https://www.openagentskill.com/api/agent/resolve?task=Use%20blue-team%20in%20an%20agent%20workflow&agent=codex&max_risk=medium","receipt":"https://www.openagentskill.com/api/agent/receipt?task=Use%20blue-team%20in%20an%20agent%20workflow&agent=codex&max_risk=medium&format=text","install":"https://www.openagentskill.com/api/skills/gaasher-blue-team/install","manifest":"https://www.openagentskill.com/api/registry/manifest/gaasher-blue-team"}},"machine_metadata":{"version":"openagentskill-agent-metadata-v2","skill":{"slug":"gaasher-blue-team","name":"blue-team","description":"Use when the user has concrete failing cases in code or a guardrail/classifier/filter/prompt/API they own — a red-team failure catalogue OR a CI/CD test-failure report (failing pytest/JUnit tests) — and wants the target patched until those failures are closed without breaking what already works. It points straight at the failed cases (normalize any source with tools/ingest.py), fixes one root-cause class per iteration, and re-checks with tools/verify.py — oracle mode against a red-team oracle, or tests mode against the test suite — keeping a patch only if it closes a class while nothing that passed before regresses, else reverting; loops until every class is closed (dry) or the budget runs out, then opens a pull request with the patch set. The defensive fixer half of a find→fix setup. Not for discovering new failures (that is red-team), and not for editing the oracle, tests, or holdout that define ground truth.","category":"research","url":"https://www.openagentskill.com/skills/gaasher-blue-team","repository":"https://github.com/gaasher/Agent-Loop-Skills/tree/main/loops/blue-team","github_repo":"gaasher/Agent-Loop-Skills"},"suited_tasks":["Research agents workflows","Claude Code teams","builders willing to evaluate younger projects","Search sources","Extract claims","Synthesize findings","Inspect repository metadata","Compare code changes"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI","CLI"],"install":{"command":"npx skills add gaasher/Agent-Loop-Skills --skill blue-team","ready":true,"targets":[{"id":"openagentskill-cli","label":"CLI","kind":"command","value":"npx --yes https://github.com/Leon-Drq/openagentskill/releases/download/cli-v0.3.0/openagentskill-0.3.0.tgz add gaasher-blue-team"},{"id":"codex","label":"Codex","kind":"agent-prompt","value":"Install the \"blue-team\" agent skill from https://github.com/gaasher/Agent-Loop-Skills/tree/main/loops/blue-team. Read its SKILL.md or equivalent instructions first, install only the files needed for this workspace, and summarize any required setup before using it. Skill purpose: Use when the user has concrete failing cases in code or a guardrail/classifier/filter/prompt/API they own — a red-team failure catalogue OR a CI/CD test-failure report (failing pytest/JUnit tests) — and wants the target patched until those failures are closed without breaking what already works. It points straight at the failed cases (normalize any source with tools/ingest.py), fixes one root-cause class per iteration, and re-checks with tools/verify.py — oracle mode against a red-team oracle, or tests mode against the test suite — keeping a patch only if it closes a class while nothing that passed before regresses, else reverting; loops until every class is closed (dry) or the budget runs out, then opens a pull request with the patch set. The defensive fixer half of a find→fix setup. Not for discovering new failures (that is red-team), and not for editing the oracle, tests, or holdout that define ground truth. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"gaasher-blue-team\",\"task\":\"Install blue-team\",\"agent\":\"codex\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."},{"id":"claude-code","label":"Claude Code","kind":"agent-prompt","value":"Add \"blue-team\" as a Claude Code skill from https://github.com/gaasher/Agent-Loop-Skills/tree/main/loops/blue-team. Inspect the skill instructions, place the reusable skill files in the appropriate local skills location for this project, and report the activation steps. Skill purpose: Use when the user has concrete failing cases in code or a guardrail/classifier/filter/prompt/API they own — a red-team failure catalogue OR a CI/CD test-failure report (failing pytest/JUnit tests) — and wants the target patched until those failures are closed without breaking what already works. It points straight at the failed cases (normalize any source with tools/ingest.py), fixes one root-cause class per iteration, and re-checks with tools/verify.py — oracle mode against a red-team oracle, or tests mode against the test suite — keeping a patch only if it closes a class while nothing that passed before regresses, else reverting; loops until every class is closed (dry) or the budget runs out, then opens a pull request with the patch set. The defensive fixer half of a find→fix setup. Not for discovering new failures (that is red-team), and not for editing the oracle, tests, or holdout that define ground truth. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"gaasher-blue-team\",\"task\":\"Install blue-team\",\"agent\":\"claude-code\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."},{"id":"cursor","label":"Cursor","kind":"agent-prompt","value":"Turn \"blue-team\" from https://github.com/gaasher/Agent-Loop-Skills/tree/main/loops/blue-team into a reusable Cursor project rule or agent instruction. Preserve the core workflow, adapt paths to this repo, and keep the rule scoped to tasks where it is relevant. Skill purpose: Use when the user has concrete failing cases in code or a guardrail/classifier/filter/prompt/API they own — a red-team failure catalogue OR a CI/CD test-failure report (failing pytest/JUnit tests) — and wants the target patched until those failures are closed without breaking what already works. It points straight at the failed cases (normalize any source with tools/ingest.py), fixes one root-cause class per iteration, and re-checks with tools/verify.py — oracle mode against a red-team oracle, or tests mode against the test suite — keeping a patch only if it closes a class while nothing that passed before regresses, else reverting; loops until every class is closed (dry) or the budget runs out, then opens a pull request with the patch set. The defensive fixer half of a find→fix setup. Not for discovering new failures (that is red-team), and not for editing the oracle, tests, or holdout that define ground truth. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"gaasher-blue-team\",\"task\":\"Install blue-team\",\"agent\":\"cursor\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."}],"handoff_url":"https://www.openagentskill.com/api/skills/gaasher-blue-team/install","manifest_url":"https://www.openagentskill.com/api/registry/manifest/gaasher-blue-team"},"trust":{"score":65,"label":"Manual review","version":"trust-score-v4","install_policy":"human_review_before_install","evidence":{"stars":"163 GitHub stars","repoActivity":"163 stars, 19 forks","lastPushed":"2mo since push","license":"MIT","repository":"https://github.com/gaasher/Agent-Loop-Skills/tree/main/loops/blue-team","install":"npx skills add gaasher/Agent-Loop-Skills --skill blue-team","installSafety":"standard package or runtime install path","permissionSurface":"secrets or environment access, shell or command execution","documentation":"Strong README/SKILL.md context","agentOutcomes":"No agent outcome data yet"},"outcome_evidence":{"total":0,"successes":0,"failures":0,"not_relevant":0,"success_rate":null,"recent_success_rate":null,"recent_failure_rate":null,"install_attempts":0,"install_success_rate":null,"risk_blocked":0,"setup_required":0,"avg_output_quality":null,"production_outcomes":0,"last_outcome_at":null,"label":"No agent outcome data yet"},"auto_install":{"allowed":false,"sandbox_required":true,"reason":"Human review or sandbox validation is required before automatic installation."},"best_for":["research","agent-skill"],"known_risks":["The skill relies on user-provided commands (oracle_cmd, test_cmd) which could be misconfigured, but this is expected and not a security flaw.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 163 stars, 19 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"]},"agent_proven":{"version":"agent-proven-v1","score":0,"tier":"unproven","label":"Needs first agent run","summary":"No agent outcome reports yet. Use Resolve, run one narrow sandbox task, then report the result.","metrics":{"totalOutcomes":0,"successfulOutcomes":0,"failedOutcomes":0,"installAttempts":0,"installSuccessRate":null,"successRate":null,"recentSuccessRate":null,"recentFailureRate":null,"riskBlocked":0,"setupRequired":0,"notRelevant":0,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"uniqueAgents":0,"lastOutcomeAt":null},"signals":[],"penalties":["No real agent outcome evidence yet"]},"audit":{"score":72,"risk_level":"needs_review","risk_label":"Needs review","warnings":["Dependency or permission surface needs review","Permission surface may require sandboxing","The skill relies on user-provided commands (oracle_cmd, test_cmd) which could be misconfigured, but this is expected and not a security flaw.","No explicit sandboxing or permission prompts beyond the agent's own safeguards; the skill assumes the user has granted appropriate execution rights.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 163 stars, 19 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access"]},"safety_gate":{"tier":"blocked","label":"Blocked for auto-install","auto_install_policy":"block","auto_install_allowed":false,"human_review_required":true,"blocked":true,"recommended_action":"Do not auto-install. Inspect the source, dependencies, and permission surface first."},"quality":{"score":63,"label":"Promising"},"supply":{"track":"Coding and developer agents","scenario":"GitHub automation","maintenance":"2mo since push","risk":"Needs review"},"alternative_skills":[],"do_not_use_when":["teams that need a vendor-supported SLA","production agents without a repository review","The skill relies on user-provided commands (oracle_cmd, test_cmd) which could be misconfigured, but this is expected and not a security flaw.","No OpenAgentSkill engagement data yet","High-risk permission hints: Shell or command execution, Secrets or environment access","Dependency or permission surface needs review","Permission surface may require sandboxing","No explicit sandboxing or permission prompts beyond the agent's own safeguards; the skill assumes the user has granted appropriate execution rights."],"agent_contract":{"task_input":"Use blue-team in an agent workflow","recommended_action":"Do not auto-install. Inspect the source, dependencies, and permission surface first.","install_policy":"block","minimum_review_before_use":["Trust: 65/100 Manual review","Audit: 72/100 Needs review","Safety: 32/100 Avoid automatic install","Review repository, license, install command, and permission surface before production use."],"expected_agent_output":{"selected_skill":"gaasher-blue-team (blue-team)","install_command":"npx skills add gaasher/Agent-Loop-Skills --skill blue-team","risk_summary":"Needs review; Blocked for auto-install; Review before production","verification_result":"Report the smallest successful task, files touched, warnings, and any missing setup."}},"outcome_feedback":{"endpoint":"https://www.openagentskill.com/api/agent/outcome","method":"POST","requires_resolve_event_id":true,"event_id_source":"Use install_receipt.outcome_feedback.event_id or feedback.event_id returned by /api/agent/resolve for the current task.","expected_outcomes":["success","failed","not_relevant","blocked_by_risk","setup_required"],"payload_template":{"event_id":"<install_receipt.outcome_feedback.event_id or feedback.event_id from /api/agent/resolve>","skill_slug":"gaasher-blue-team","task":"Use blue-team in an agent workflow","agent":"codex","outcome":"success","install_used":true,"risk_blocked":false,"setup_required":false,"task_success":true,"output_quality":4,"error_type":null,"human_review_required":false,"workspace":"sandbox","time_to_useful_ms":120000,"notes":"Report the smallest successful task, setup friction, files touched, and risk notes."}},"endpoints":{"web":"https://www.openagentskill.com/skills/gaasher-blue-team","api":"https://www.openagentskill.com/api/agent/skills/gaasher-blue-team","audit":"https://www.openagentskill.com/skills/gaasher-blue-team/audit","eval":"https://www.openagentskill.com/api/agent/evals?slug=gaasher-blue-team&task=Use%20blue-team%20in%20an%20agent%20workflow&max_risk=medium","resolve":"https://www.openagentskill.com/api/agent/resolve?task=Use%20blue-team%20in%20an%20agent%20workflow&agent=codex&max_risk=medium","receipt":"https://www.openagentskill.com/api/agent/receipt?task=Use%20blue-team%20in%20an%20agent%20workflow&agent=codex&max_risk=medium&format=text","install":"https://www.openagentskill.com/api/skills/gaasher-blue-team/install","manifest":"https://www.openagentskill.com/api/registry/manifest/gaasher-blue-team"}},"supply_profile":{"track":{"slug":"coding","label":"Coding and developer agents","shortLabel":"Coding","description":"Code review, repo analysis, testing, CI, GitHub, DevOps, and developer workflow skills."},"scenario":{"label":"GitHub automation","description":"I need my agent to triage GitHub issues, review pull requests, and summarize repository changes.","useCases":[{"slug":"research-agents","title":"Research agents"},{"slug":"github-automation","title":"GitHub automation"},{"slug":"sports-analytics","title":"Sports analytics"}]},"applicableAgents":["Claude Code","CLI","Codex","Cursor"],"install":{"ready":true,"command":"npx skills add gaasher/Agent-Loop-Skills --skill blue-team","primaryTarget":"CLI","targetCount":4},"githubQuality":{"stars":163,"starsLabel":"163","forks":19,"license":"MIT","qualityScore":63,"trustScore":65,"auditScore":72},"maintenance":{"status":"active","label":"2mo since push","daysSincePush":70,"lastPushedAt":"2026-06-30T04:03:49+00:00"},"risk":{"level":"needs_review","label":"Needs review","requiresReview":true,"notes":["Dependency or permission surface needs review","Permission surface may require sandboxing","The skill relies on user-provided commands (oracle_cmd, test_cmd) which could be misconfigured, but this is expected and not a security flaw.","No explicit sandboxing or permission prompts beyond the agent's own safeguards; the skill assumes the user has granted appropriate execution rights.","Quality score needs review"]},"coverageTags":["Coding","GitHub automation","research","agent-skill"]},"audit":{"audit_score":72,"risk_level":"needs_review","risk_label":"Needs review","quality_score":63,"trust_score":65,"maintenance_score":88,"security_score":71,"install_score":92,"warnings":["Dependency or permission surface needs review","Permission surface may require sandboxing","The skill relies on user-provided commands (oracle_cmd, test_cmd) which could be misconfigured, but this is expected and not a security flaw.","No explicit sandboxing or permission prompts beyond the agent's own safeguards; the skill assumes the user has granted appropriate execution rights.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 163 stars, 19 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"]},"quality_signals":{"model":"v2","star_score":15.5,"usage_score":0,"review_score":5.4,"metadata_score":3,"freshness_score":12},"platforms":["Claude Code"],"use_cases":[{"slug":"research-agents","title":"Research agents","url":"https://www.openagentskill.com/use-cases/research-agents"},{"slug":"github-automation","title":"GitHub automation","url":"https://www.openagentskill.com/use-cases/github-automation"},{"slug":"sports-analytics","title":"Sports analytics","url":"https://www.openagentskill.com/use-cases/sports-analytics"},{"slug":"testing-qa","title":"Testing and QA","url":"https://www.openagentskill.com/use-cases/testing-qa"}],"stacks":[{"slug":"research-report-agent","title":"Research report agent","url":"https://www.openagentskill.com/collections/research-report-agent"},{"slug":"coding-review-agent","title":"Coding review agent","url":"https://www.openagentskill.com/collections/coding-review-agent"},{"slug":"browser-qa-agent","title":"Browser QA agent","url":"https://www.openagentskill.com/collections/browser-qa-agent"}],"install":"npx skills add gaasher/Agent-Loop-Skills --skill blue-team","install_targets":[{"id":"openagentskill-cli","label":"CLI","title":"OpenAgentSkill CLI","kind":"command","value":"npx --yes https://github.com/Leon-Drq/openagentskill/releases/download/cli-v0.3.0/openagentskill-0.3.0.tgz add gaasher-blue-team","description":"Resolve policy, run the source installer safely, and report a verified install receipt.","copyLabel":"Copy command"},{"id":"codex","label":"Codex","title":"Codex install prompt","kind":"agent-prompt","value":"Install the \"blue-team\" agent skill from https://github.com/gaasher/Agent-Loop-Skills/tree/main/loops/blue-team. Read its SKILL.md or equivalent instructions first, install only the files needed for this workspace, and summarize any required setup before using it. Skill purpose: Use when the user has concrete failing cases in code or a guardrail/classifier/filter/prompt/API they own — a red-team failure catalogue OR a CI/CD test-failure report (failing pytest/JUnit tests) — and wants the target patched until those failures are closed without breaking what already works. It points straight at the failed cases (normalize any source with tools/ingest.py), fixes one root-cause class per iteration, and re-checks with tools/verify.py — oracle mode against a red-team oracle, or tests mode against the test suite — keeping a patch only if it closes a class while nothing that passed before regresses, else reverting; loops until every class is closed (dry) or the budget runs out, then opens a pull request with the patch set. The defensive fixer half of a find→fix setup. Not for discovering new failures (that is red-team), and not for editing the oracle, tests, or holdout that define ground truth. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"gaasher-blue-team\",\"task\":\"Install blue-team\",\"agent\":\"codex\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes.","description":"Give Codex a repo-aware install prompt when the skill is not available through a local CLI.","copyLabel":"Copy prompt"},{"id":"claude-code","label":"Claude Code","title":"Claude Code skill prompt","kind":"agent-prompt","value":"Add \"blue-team\" as a Claude Code skill from https://github.com/gaasher/Agent-Loop-Skills/tree/main/loops/blue-team. Inspect the skill instructions, place the reusable skill files in the appropriate local skills location for this project, and report the activation steps. Skill purpose: Use when the user has concrete failing cases in code or a guardrail/classifier/filter/prompt/API they own — a red-team failure catalogue OR a CI/CD test-failure report (failing pytest/JUnit tests) — and wants the target patched until those failures are closed without breaking what already works. It points straight at the failed cases (normalize any source with tools/ingest.py), fixes one root-cause class per iteration, and re-checks with tools/verify.py — oracle mode against a red-team oracle, or tests mode against the test suite — keeping a patch only if it closes a class while nothing that passed before regresses, else reverting; loops until every class is closed (dry) or the budget runs out, then opens a pull request with the patch set. The defensive fixer half of a find→fix setup. Not for discovering new failures (that is red-team), and not for editing the oracle, tests, or holdout that define ground truth. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"gaasher-blue-team\",\"task\":\"Install blue-team\",\"agent\":\"claude-code\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes.","description":"Use this prompt to ask Claude Code to add the skill and explain the local activation steps.","copyLabel":"Copy prompt"},{"id":"cursor","label":"Cursor","title":"Cursor rule prompt","kind":"agent-prompt","value":"Turn \"blue-team\" from https://github.com/gaasher/Agent-Loop-Skills/tree/main/loops/blue-team into a reusable Cursor project rule or agent instruction. Preserve the core workflow, adapt paths to this repo, and keep the rule scoped to tasks where it is relevant. Skill purpose: Use when the user has concrete failing cases in code or a guardrail/classifier/filter/prompt/API they own — a red-team failure catalogue OR a CI/CD test-failure report (failing pytest/JUnit tests) — and wants the target patched until those failures are closed without breaking what already works. It points straight at the failed cases (normalize any source with tools/ingest.py), fixes one root-cause class per iteration, and re-checks with tools/verify.py — oracle mode against a red-team oracle, or tests mode against the test suite — keeping a patch only if it closes a class while nothing that passed before regresses, else reverting; loops until every class is closed (dry) or the budget runs out, then opens a pull request with the patch set. The defensive fixer half of a find→fix setup. Not for discovering new failures (that is red-team), and not for editing the oracle, tests, or holdout that define ground truth. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"gaasher-blue-team\",\"task\":\"Install blue-team\",\"agent\":\"cursor\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes.","description":"Use this when installing as Cursor project rules or reusable agent instructions.","copyLabel":"Copy prompt"}],"repository":"https://github.com/gaasher/Agent-Loop-Skills/tree/main/loops/blue-team","github_repo":"gaasher/Agent-Loop-Skills","version":"1.0.0","license":"MIT","urls":{"web":"https://www.openagentskill.com/skills/gaasher-blue-team","repository":"https://github.com/gaasher/Agent-Loop-Skills/tree/main/loops/blue-team","api":"/api/agent/skills/gaasher-blue-team","install_api":"/api/skills/gaasher-blue-team/install"},"meta":{"created_at":"2026-09-06T11:26:46.26362+00:00","updated_at":"2026-09-06T11:26:46.346754+00:00","agent_friendly":true}}