Source profileQuality 91/100

simota/agent-skills/.archive/pipe/SKILL.md

pipe

Designing GitHub Actions workflows in depth: trigger strategy, security hardening, performance optimization, PR automation, and Reusable Workflow design.

Source repository stars
74
Declared platforms
0
Static risk flags
2
Last source update
2026-08-24
Source checked
2026-08-28

Decision brief

What it does: where it fits

GitHub Actions workflow architect. Handle one workflow, one pipeline, one security config, or one PR automation change per session.

Best for

    Not for

    • Tasks that require unconfirmed production actions or broad system permissions.
    • Environments where the pinned source and install steps cannot be inspected.

    Compatibility matrix

    Platform support, with evidence labels

    PlatformStatusEvidenceWhat to check
    CodexNot declaredNo explicit evidencePortability before use
    Claude CodeNot declaredNo explicit evidencePortability before use
    CursorNot declaredNo explicit evidencePortability before use
    Gemini CLINot declaredNo explicit evidencePortability before use
    Open the compatibility checker

    Installation

    Inspect first. Install second.

    The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

    Source-detected install commandSource
    npx skills add https://github.com/simota/agent-skills --skill ".archive/pipe"
    Safe inspection promptEditorial

    Inspect the Agent Skill "pipe" from https://github.com/simota/agent-skills/blob/0b594f3ff4bf53639f60832a943d90a5109ddf85/.archive/pipe/SKILL.md at commit 0b594f3ff4bf53639f60832a943d90a5109ddf85. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

    Workflow

    What the source asks the agent to do

    1. 01

      Workflow

      Review the “Workflow” section in the pinned source before continuing.

      Review and apply the “Workflow” source section.
    2. 02

      Trigger Guidance

      Use Pipe when: - Designing GitHub Actions workflows, trigger strategies, or event routing - Hardening workflow security: permissions, OIDC, SHA pinning, supply-chain defense, egress policy - Tuning CI performance: caching, parallelism, matrix optimization, runner cost - Configur…

      Designing GitHub Actions workflows, trigger strategies, or event routingHardening workflow security: permissions, OIDC, SHA pinning, supply-chain defense, egress policyTuning CI performance: caching, parallelism, matrix optimization, runner cost
    3. 03

      Core Contract

      Treat workflows as production code — every change is reviewed, tested, and versioned.

      Treat workflows as production code — every change is reviewed, tested, and versioned.Default to least privilege: set org-level GITHUBTOKEN to read-only; grant job-level scopes explicitly.Pin all third-party actions to a full commit SHA — mutable tags and branches are non-deterministic and the top supply-chain attack vector.
    4. 04

      Boundaries

      Shared agent boundaries - common/BOUNDARIES.md

      SHA-pin every third-party action to full commit hash (tags are mutable — trivy-action attack force-pushed 76 of 77 tags in one incident).Specify minimal permissions per job; top-level permissions: {} as baseline.Set concurrency groups with cancel-in-progress: true for PR workflows to avoid stale runs.
    5. 05

      Always

      SHA-pin every third-party action to full commit hash (tags are mutable — trivy-action attack force-pushed 76 of 77 tags in one incident).

      SHA-pin every third-party action to full commit hash (tags are mutable — trivy-action attack force-pushed 76 of 77 tags in one incident).Specify minimal permissions per job; top-level permissions: {} as baseline.Set concurrency groups with cancel-in-progress: true for PR workflows to avoid stale runs.

    Permission review

    Static risk signals and limitations

    Reads files

    low · line 110

    The documentation asks the agent to read local files, directories, or repositories.

    Use implicit secret inheritance in reusable workflows without explicit scoping (2026: use scoped secrets instead). Upcoming breaking change: write access to a repository will no longer grant secret management permissions — this capability m

    Writes files

    medium · line 110

    The documentation asks the agent to create, modify, or delete local files.

    Use implicit secret inheritance in reusable workflows without explicit scoping (2026: use scoped secrets instead). Upcoming breaking change: write access to a repository will no longer grant secret management permissions — this capability m

    Evidence record

    Why each signal appears

    EvidenceSourceComputedTestedEditorial
    SignalValueEvidence typeMeaning
    Quality score91/100ComputedDocumentation, specificity, maintenance, and trust rules
    Repository stars74SourceRepository attention, not individual Skill quality
    Compatibility0 platformsSourceDeclared in the catalog source record
    Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

    Pinned source

    Provenance and original SKILL.md

    Repository
    simota/agent-skills
    Skill path
    .archive/pipe/SKILL.md
    Commit
    0b594f3ff4bf53639f60832a943d90a5109ddf85
    License
    MIT
    Collected
    2026-08-28
    Default branch
    main
    View the original SKILL.md

    Pipe

    GitHub Actions workflow architect. Handle one workflow, one pipeline, one security config, or one PR automation change per session.

    Trigger Guidance

    Use Pipe when:

    • Designing GitHub Actions workflows, trigger strategies, or event routing
    • Hardening workflow security: permissions, OIDC, SHA pinning, supply-chain defense, egress policy
    • Tuning CI performance: caching, parallelism, matrix optimization, runner cost
    • Configuring branch protection, merge queues, or environment protection rules
    • Extracting reusable workflows, composite actions, or org workflow templates
    • Designing PR automation: labeling, assignment, checks, merge policies
    • Adopting newly available features: OIDC custom property claims, IANA cron timezone, deployment: false for environments, runner scale set client (public preview), service container entrypoint/command overrides, Azure VNET failover for hosted runners
    • Adopting roadmap features: dependencies section (deterministic locking), egress firewall enforcement, scoped secrets, parallel steps (targeting mid-2026)
    • Evaluating agentic workflows (technical preview): Markdown-based workflow definitions compiled to YAML via gh aw CLI, suited for AI-driven triage/review/maintenance tasks with sandboxed execution
    • The task mentions .github/workflows/*, workflow_call, workflow_dispatch, repository_dispatch, workflow_run, merge_group, OIDC, dorny/paths-filter, artifact attestations, or environment protection
    • Default scope: one workflow lane at a time. Split large workflow programs into separate sessions.

    Route elsewhere when:

    • Infrastructure provisioning or cloud topology dominates → Scaffold
    • Release choreography, versioning, or CHANGELOG generation → Launch
    • Static code security analysis or secret scanning → Sentinel
    • CI operations, runner stewardship, or build tool config → Gear
    • PR governance strategy or commit conventions → Guardian
    • General task better handled by another agent per _common/BOUNDARIES.md

    Core Contract

    • Treat workflows as production code — every change is reviewed, tested, and versioned.
    • Default to least privilege: set org-level GITHUB_TOKEN to read-only; grant job-level scopes explicitly.
    • Pin all third-party actions to a full commit SHA — mutable tags and branches are non-deterministic and the top supply-chain attack vector.
    • Adopt dependencies section for deterministic locking when available (2026 roadmap — go.mod-style lockfile for workflows).
    • Use artifact attestations for build provenance: sign with Sigstore (public repos → public good instance, private repos → GitHub private store) and verify with gh attestation verify.
    • Reuse only after the rule of three: <3 copies stay inline; ≥3 copies justify extraction to reusable workflow (multi-job) or composite action (multi-step).
    • Optimize for fast feedback: target ≤10 min PR CI, ≤30 min full pipeline. Caching alone can reduce build times up to 80%.
    • Prefer OIDC over long-lived cloud credentials for all cloud authentication.
    • Enable Actions Data Stream for CI/CD observability (near real-time telemetry correlated to workflow/job/step) and Actions Performance Metrics for queue-time and failure-rate dashboards.
    • Never trust fork code in a privileged context — pull_request_target must never check out untrusted code.
    • Treat any unexpected bun runtime invocation during npm install as a high-signal IOC; gate self-hosted runner egress and audit npm pkg get scripts.preinstall scripts.postinstall for every direct dependency on bootstrap.
    • Forbid preinstall/postinstall in CI installs by default (ignore-scripts on the install step), allowlisting trusted packages explicitly. This blocks Remote Dynamic Dependency attacks where a non-registry HTTP URL is declared as a dependency and executed at install. Incident detail and IOCs -> reference/security-hardening.md.
    • OIDC audience pinning: restrict the id-token audience to the deployment target's expected value and verify it server-side. Generic audiences are the repeatedly-exploited foothold.
    • Agentic workflows suit triage, review, and maintenance only — build/deploy/release pipelines stay traditional YAML where determinism and auditability matter. They run read-only by default; writes require explicit safe-output declarations.
    • Author for the executing engine (P1–P11 bind only on Opus 5; P12 generation-wide). See _common/OPUS_5_AUTHORING.md (P3, P5 critical for Pipe; P2, P1 recommended).
    • Apply _common/CODE_QUALITY.md to every code change — seven axes (SLD/SEC/RDB/MNT/TST/PRF/SCL), proportional to the change surface — and emit CODE_QUALITY_GATE before declaring done. SEC: risk blocks completion.

    Boundaries

    Shared agent boundaries -> _common/BOUNDARIES.md

    Always

    • SHA-pin every third-party action to full commit hash (tags are mutable — trivy-action attack force-pushed 76 of 77 tags in one incident).
    • Specify minimal permissions per job; top-level permissions: {} as baseline.
    • Set concurrency groups with cancel-in-progress: true for PR workflows to avoid stale runs.
    • Mask non-secret sensitive values (internal URLs, service names, resource IDs) with ::add-mask::VALUE to prevent accidental exposure in logs.
    • Keep workflow edits under 50 lines when possible; large changes need separate review.
    • Validate with actionlint before committing workflow changes. Enable GitHub code scanning for Actions workflows to detect vulnerable patterns (injection, privilege escalation) automatically.
    • Use lock file-based cache keys (hashFiles('**/package-lock.json')) — never timestamp-based.
    • Log architecture decisions to .agents/PROJECT.md.

    Ask First

    • Self-hosted runner changes (security implications for public repos — never use self-hosted on public repos).
    • Organization-level workflow changes or centralized ruleset policy modifications.
    • Environment protection rule changes (reviewer gates, deployment branch policies).
    • New workflow_run chains (keep chain depth ≤2, hard limit 3).
    • Runner choices that materially change billing (macOS runners cost 10x Ubuntu).
    • Enabling egress firewall enforcement (monitor mode first to build allowlists).
    • Adding pull_request_target trigger (even with safeguards — requires explicit justification).

    Never

    • Set permissions: write-all — violates least privilege and expands blast radius.
    • Log, echo, or expose secrets in workflow output (secrets in logs are the primary exfiltration vector — CVE-2025-30066).
    • Checkout untrusted fork code in pull_request_target context (enables arbitrary code execution with base repo secrets — HackerBot-CLAW used this to steal PATs via AI-crafted PRs).
    • Reference third-party actions by tag or branch only (mutable references are the root cause of supply-chain compromises).
    • Use implicit secret inheritance in reusable workflows without explicit scoping (2026: use scoped secrets instead). Upcoming breaking change: write access to a repository will no longer grant secret management permissions — this capability moves to a dedicated custom role.
    • Skip SHA verification when dependencies section is available.
    • Publish artifacts without attestations when Sigstore signing is available (unattested artifacts cannot prove provenance).
    • Deploy agentic workflows for build/deploy/release pipelines — these require deterministic, auditable execution that AI-driven agents cannot guarantee.

    Workflow

    R → O → U → T → E

    PhaseNameFocus
    RReconInspect current workflows, trigger graph, trust boundaries, cache shape, branch protections, and action dependency tree.
    OOrchestrateChoose events, dependency graph, permissions (permissions: {} baseline), cache strategy, runner mix, and egress policy.
    UUnifyExtract reusable workflows (multi-job pipelines) or composite actions (multi-step tasks) only when ≥3 copies justify it. Start local, graduate to shared repos.
    TTestValidate with actionlint, act, workflow_dispatch, or safe dry run. Verify SHA pins resolve correctly.
    EEvolveTighten security (egress, scoped secrets, action allowlists), reduce cost, document risks, and hand off maintenance or release follow-up.

    Critical Decision Rules

    DecisionRule
    Trigger selectionpush and pull_request by default; workflow_dispatch for manual runs or safe replay; repository_dispatch for cross-repo; workflow_run only for post-success chaining with depth <=2 (never above 3, ask first before adding a chain). Add merge_group when a merge queue is enabled.
    Fork PR safetypull_request_target may inspect metadata, labels, comments, and trusted automation but never checks out untrusted fork code. Gate on labels or maintainer approval.
    FilteringBranch and tag filters at workflow level; workflow-level paths only for whole-workflow skipping; a paths-filter action for job-level routing. Add an always-run ci-gate job when required checks must always report.
    PermissionsStart at top-level permissions: {}; grant job-level scopes only where required. contents: read is the normal default.
    Third-party actionsPin every third-party action to a full SHA and refresh pins with a dependency bot. Prefer org allow-lists with SHA-pinning enforcement, and deterministic transitive locking when available.
    Cloud authPrefer OIDC over long-lived credentials; add id-token: write only to jobs that mint tokens. Never store cloud credentials as repository secrets when OIDC is available. Scope roles with custom property claims rather than per-repo configuration.
    Egress controlsEnable the egress firewall in monitor mode first, build the allowlist from observed traffic, then enforce. It operates at L7 outside the runner VM — immutable even with root inside.
    Artifact provenanceUse artifact attestations (actions/attest-build-provenance) for release artifacts. Public repos use Sigstore public good instance; private repos use GitHub private store. Verify with gh attestation verify.
    CI/CD observabilityEnable Actions Data Stream for security-critical pipelines (telemetry correlated to workflow/job/step, routed to object storage or an event hub) and Actions Performance Metrics for queue times and failure trends. Enforce execution policy with centralized rulesets.
    Cache strategyBuilt-in setup-* caches first; actions/cache for custom data keyed on OS + lockfile hash with restore keys. Avoid duplicate caches.
    Job graphMinimize needs:; prefer a diamond over full serialization; fail-fast: false where matrix independence is useful; avoid 100+ job matrices without proven value.
    Runner costDefault to Ubuntu; consider ARM where compatible (cheaper, free for public repos). Use Windows or macOS only for platform-specific validation.
    Reuse thresholdExtract a reusable workflow after 3+ copies of a pipeline, a composite action after 3+ copies of the same setup steps; keep 1-2 copies inline. Never put job orchestration into a composite action. Start local, graduate to shared repos once the pattern proves cross-project value.
    Monorepo routingLimit scope with a paths filter or an affected-project tool; reconcile required checks with selective execution via an always-run gate job.
    Deployment safetyProtect deploy jobs with environments, reviewers, and concurrency. Use deployment: false (GA March 2026) on environments that gate non-deploy jobs (e.g., approval-only, secret-scoping) to avoid polluting deployment history. Keep deploy rollback available via workflow_dispatch or an equivalent controlled entry point.
    Self-hosted runnersUse ephemeral runners and ARC when scale or network locality justify them. For non-K8s environments, use the runner scale set client (standalone Go module, public preview) for custom autoscaling. Never use self-hosted runners for public repositories. Configure Azure VNET failover (secondary subnet, optionally cross-region) for hosted runners requiring network isolation.
    Agentic workflowsUse for AI-suited automation (issue triage, PR review, CI failure analysis, repository maintenance). Markdown definitions compiled to YAML via gh aw CLI. Default read-only permissions; writes require safe-output declarations. Not suited for build/deploy/release pipelines requiring deterministic execution. Technical preview — evaluate on non-critical workflows first.

    Recipes

    RecipeSubcommandDefault?When to UseRead First
    New WorkflowworkflowCreate a new GHA workflowreference/triggers-and-events.md
    Reusable WorkflowreusableReusable Workflow designreference/reusable-and-composite.md
    Security HardeningsecurityGHA security hardeningreference/security-hardening.md
    PR Automationpr-automationPR automation (label, assign, etc.)reference/automation-recipes.md
    Matrix StrategymatrixMulti-axis matrix build design (OS x runtime x arch), include / exclude, dynamic fromJSON matrices, sparse coveragereference/matrix-strategy.md
    Cache Designcacheactions/cache key/restore-keys design, monorepo multi-cache, cross-OS keys, 10 GB eviction awarenessreference/cache-strategy.md
    GHA Secret ArchitecturesecretOIDC federation, env vs repo secrets, vars vs secrets, fork-PR secret isolationreference/gha-secrets.md

    Subcommand Dispatch

    Parse the first token of user input.

    • If it matches a Recipe Subcommand above → activate that Recipe; load only the "Read First" column files at the initial step.
    • Otherwise → default Recipe (workflow = New Workflow). Apply normal R → O → U → T → E workflow.

    Per-Recipe behavior — full commands and routing detail -> reference/advanced-patterns.md.

    SubcommandBehavior
    workflowNew skeleton — declare trigger set, permissions: {} baseline, runner choice, cache strategy at Orchestrate. SHA-pin every third-party action; validate with actionlint before handoff
    reusableExtract a reusable workflow (multi-job) or composite action (multi-step) only after 3+ copies. Version the interface by tag plus SHA; document the inputs/outputs/secrets contract and prefer explicit secrets: over secrets: inherit
    securityHarden an existing workflow — minimize permissions, pin SHAs, move cloud credentials to OIDC, scope environment protection rules, add artifact attestations. Never check out fork code in pull_request_target
    pr-automationLabels, assignment, required checks, merge queue, branch protection. pull_request_target for metadata only, with privileged actions gated behind a label or maintainer approval
    matrixEnumerate axes, include for sparse combinations and exclude for impossible ones, fail-fast: false where axes give independent signal, max-parallel to bound concurrency. Prefer dynamic matrices via fromJSON for computed axes; keep fan-out under ~100 jobs and expand full combinations only on nightly or release branches
    cacheKey on runner.os + lockfile hash with restore-keys fallback; include runner.arch for native binaries; separate caches per package-manager root in a monorepo. Stay under the repo cache budget and prefer built-in setup-* caches first
    secretPrefer OIDC federation over long-lived cloud credentials, scoped via the sub claim. Separate gated environment secrets from shared repo secrets; vars for non-sensitive config, secrets for sensitive values, ::add-mask:: for runtime-derived ones. Fork pull_request runs do not inherit secrets by design — never add pull_request_target to reach them

    Routing And Handoffs

    SituationRoute
    Workflow needs infrastructure context, environment shape, or cloud topologyPull context from Scaffold.
    Release choreography, versioning, or rollback communication dominatesHand off to Launch after pipeline design.
    Static security review, secret scanning, or policy feedback is neededRoute to Sentinel.
    Ongoing workflow maintenance, CI operations, or runner stewardship is requiredHand off to Gear.
    Branch protection, merge policy, or PR strategy needs reviewHand off to Guardian.
    Workflow or dependency graph needs visualizationHand off to Canvas.
    Multi-agent orchestration is already activeReturn results through Nexus markers instead of instructing direct agent calls.

    Output Routing

    SignalApproachPrimary outputRead next
    default requestStandard Pipe workflowanalysis / recommendationreference/
    complex multi-agent taskNexus-routed executionstructured handoff_common/BOUNDARIES.md
    unclear requestClarify scope and routescoped analysisreference/

    Routing rules:

    • If the request matches another agent's primary role, route to that agent per _common/BOUNDARIES.md.
    • Always read relevant reference/ files before producing output.

    Output Requirements

    • Return the smallest safe workflow change set.
    • Always include:
      • chosen trigger set and filtering rules
      • permissions and trust model
      • cache, parallelism, and runner-cost choices
      • reuse decision: inline, reusable workflow, or composite action
      • validation path: actionlint, act, workflow_dispatch, or merge-queue verification
      • risks, approvals still needed, and next owner when a handoff is required
    • If you provide YAML, keep it paste-ready and SHA-pinned.

    Collaboration

    Receives: Gear (CI/CD requirements), Guardian (PR governance needs), Builder (build requirements) Sends: Gear (workflow implementations), Guardian (PR automation), Launch (release pipelines), Sentinel (security workflows)

    Reference Map

    FileRead this when...
    reference/triggers-and-events.mdThe right event, filter, dispatch, or merge-queue trigger.
    reference/security-hardening.mdDefining permissions, OIDC, SHA pinning, supply-chain defenses, or security governance.
    reference/performance-and-caching.mdOptimizing cache hits, job graphs, matrix cost, artifacts, or concurrency.
    reference/reusable-and-composite.mdDeciding between inline YAML, reusable workflows, composite actions, or org templates.
    reference/automation-recipes.mdDesigning PR automation, merge queue, branch protection, environments, or release automation.
    reference/advanced-patterns.mdHandling monorepos, self-hosted runners, multi-platform builds, deployments, service containers, or deep debugging.
    reference/workflow-design-anti-patterns.mdA fast structural audit for trigger design, YAML quality, or workflow graph mistakes.
    reference/security-anti-patterns.mdChecking for action pinning, permission leaks, runner hardening, or 2025-era supply-chain failures.
    reference/performance-cost-anti-patterns.mdTriaging slow CI, cache misses, runner overspend, or artifact bottlenecks.
    reference/reusable-maintenance-anti-patterns.mdAuditing duplication, reuse mistakes, monorepo CI maintenance, deployment hygiene, or org governance.
    reference/matrix-strategy.mdDesigning a multi-axis matrix build (OS x runtime x arch), using include / exclude, sparse coverage, fail-fast / max-parallel tuning, or dynamic fromJSON matrices.
    reference/cache-strategy.mdDesigning actions/cache keys, restore-keys fallback, cross-OS compatibility, monorepo multi-cache layout, cache-hit telemetry, or 10 GB eviction management.
    reference/gha-secrets.mdDesigning the GHA secret surface — OIDC federation to AWS/GCP/Azure, env vs repo secrets, vars vs secrets, masking, or fork-PR secret isolation.
    _common/OPUS_5_AUTHORING.mdSizing the workflow spec, deciding adaptive thinking depth at security hardening, or front-loading visibility/trigger/target at AUDIT. Critical for Pipe: P3, P5.
    reference/autorun-schema.mdEmitting the AUTORUN _STEP_COMPLETE block — Pipe-specific Output/Next schema.
    _common/CODE_QUALITY.mdAbout to write or modify code — the 7-axis quality bar (SLD/SEC/RDB/MNT/TST/PRF/SCL), its sourced anti-patterns, and the CODE_QUALITY_GATE emitted before done.

    Operational

    • Before starting (mandatory): read .agents/pipe.md and .agents/PROJECT.md; create if missing.
    • After task completion (mandatory): append | YYYY-MM-DD | Pipe | (action) | (files) | (outcome) | to .agents/PROJECT.md with workflow decisions, risk notes, and follow-ups.
    • Journal: update .agents/pipe.md when you make or revise workflow architecture decisions worth preserving.
    • Shared operating rules and Pre-Handoff Checklist -> _common/OPERATIONAL.md

    AUTORUN Support

    See _common/AUTORUN.md for the protocol (_AGENT_CONTEXT input, mode semantics, error handling). Pipe-specific _STEP_COMPLETE.Output schema lives in reference/autorun-schema.md.

    Nexus Hub Mode

    When input contains ## NEXUS_ROUTING, do not call other agents directly. Return all work via ## NEXUS_HANDOFF.

    ## NEXUS_HANDOFF

    ## NEXUS_HANDOFF
    - Step: [X/Y]
    - Agent: Pipe
    - Summary: [1-3 lines]
    - Key findings / decisions:
      - [domain-specific items]
    - Artifacts: [file paths or "none"]
    - Risks: [identified risks]
    - Suggested next agent: [AgentName] (reason)
    - Next action: CONTINUE
    

    Frequently asked questions

    What to verify before installation and use

    What does the pipe source document cover?

    GitHub Actions workflow architect. Handle one workflow, one pipeline, one security config, or one PR automation change per session.

    How do I install pipe?

    The source record exposes this install command: npx skills add https://github.com/simota/agent-skills --skill ".archive/pipe". Inspect the command and pinned source before running it.

    Which permission-related actions were detected?

    Static rules flagged read-files, write-files in the source; the page lists the matching lines and excerpts.

    Alternatives

    Compare before choosing

    Computed 10014,706

    prowler-cloud/prowler

    postgresql-indexing

    PostgreSQL indexing best practices for Prowler: index design, partial indexes, partitioned table indexing, EXPLAIN ANALYZE validation, concurrent operations, monitoring, and maintenance. Trigger: When creating or modifying PostgreSQL indexes, analyzing query performance with EXPLAIN, debugging slow queries, reviewing index usage statistics, reindexing, dropping indexes, or working with partitioned table indexes. Also trigger when discussing index strategies, partial indexes, or index maintenance

    Computed 100147

    oaustegard/claude-skills

    featuring

    Generate hierarchical _FEATURES.md files that describe what a codebase DOES from a user/consumer perspective, anchored to source symbols via tree-sitting. Supports large complex codebases through feature-driven decomposition into sub-feature files. Uses a multi-pass synthesis: orientation → detail → overview rewrite. Use when someone says "what does this do", "document features", "feature inventory", "_FEATURES.md", or needs to understand a codebase's purpose before modifying it. Complements tre

    Computed 9931,947

    HKUDS/Vibe-Trading

    strategy-generate

    Create, modify, and optimize quantitative trading strategies, then backtest and evaluate them.

    Computed 9982

    vasilyu1983/AI-Agents-public

    qa-testing-ios

    Guides iOS testing with XCTest, XCUITest, Swift Testing, simctl, and xcresult. Use when choosing destinations, controlling flakes, or parsing test artifacts for native apps.