Instructions file GitHub Copilot
Instructions for rios0rios0/pipelines, covering ci/cd pipeline templates repository, quick reference, supply-chain pinning (non-negotiable), working effectively and bootstrap and setup.
Instructions file GitHub Copilot
Instructions for rios0rios0/pipelines, covering ci/cd pipeline templates repository, quick reference, supply-chain pinning (non-negotiable), working effectively and bootstrap and setup.
Skill Claude CodeCodex
Review pull requests and diffs in pipelines — the shared SDLC pipeline templates and scripts for GitHub Actions, GitLab CI and Azure DevOps — against the rios0rios0/guide standards, with extra weight on the non-negotiable supply-chain pinning rules and the fact that every change here runs in every consumer repository.…
Instructions file
Instructions for rios0rios0/pipelines, covering claude.md, what this is, commands, architecture and 5-stage pipeline model.
Plugin Claude Code
Plugin marketplace listing 1 plugin: engineering-standards.
Instructions file GitHub Copilot
Instructions for rios0rios0/guide, covering software development guide repository, working effectively, quick setup and validation, core build process and github actions workflows.
Skill Claude CodeCodex
Review pull requests and diffs in guide — the source of the rios0rios0 engineering standards, its wiki, and the generated AI-assistant rule files — against its own standards, with extra weight on wiki page-name uniqueness, link integrity, and the generator inputs. Use when reviewing a PR, a branch, or staged changes…
Agent
Multi-repository bulk operations executor. Applies the same change across all repositories under a workspace root using the 4-phase workflow: discover repos, apply changes, git operations (stash/fetch/rebase/branch/commit/push), and create PRs using the detected vendor CLI (GitHub, Azure DevOps, GitLab).
Agent
Documentation compliance enforcer. Use after making code changes to ensure the changelog entry is written -- a chlog fragment when the project uses chlog, an [Unreleased] bullet when it does not -- and README.md and CONTRIBUTING.md are updated following the Documentation & Change Control standard. Checks git diff…
Agent
Chezmoi dotfiles specialist. Use when editing .tmpl template files, chezmoi scripts (.chezmoiscripts/), .chezmoiignore, 1Password template calls, platform-specific configurations, or debugging chezmoi apply errors.
Agent
Code standards reviewer. Reviews code changes against architecture (Clean Architecture layers, dependency direction), naming conventions, BDD test structure, and OWASP security patterns. Read-only analysis that produces structured findings.
Agent
Git workflow specialist for complex branch operations. Use for merging dependent (chained) or independent branches, rebasing onto updated main, resolving conflicts, and synchronizing branches following Git Flow conventions.
Agent
PR review comment resolver. Fetches unresolved review threads from a GitHub PR, analyzes each comment for validity, implements valid code changes, replies with explanations, pushes changes, and resolves addressed threads. Declines invalid suggestions with reasoning or asks for clarification.
Agent
Security auditor for OWASP Top 10 compliance, secret hygiene, and SAST findings analysis. Reviews code for injection vulnerabilities, authentication issues, hardcoded secrets, and IaC misconfigurations. Read-only analysis.
Command
Review all changes on the current branch against the team's coding standards defined in .claude/rules/ (already loaded into this conversation). This is meant to run BEFORE creating a PR to catch issues before reviewers do.
Command
Detect the current branch's pull request, retrieve its failing CI workflow logs, fix the root causes, commit, and push. This command auto-detects the PR from the current Git branch, fetches check run statuses, downloads failure logs, classifies each failure, implements fixes, and pushes a single commit.
Command
Fix all guardrail findings (make lint, make test, make sast) across one or more repositories. This command is a complete, repeatable workflow: sync with main, run all guardrails, fix every finding, update documentation, commit following standards, push, and create PRs.
Command
Detect the current branch's pull request and resolve its unresolved review comments. This command auto-detects the PR from the current Git branch, fetches unresolved review threads via GraphQL, classifies each comment, implements valid changes, replies with explanations, pushes, and resolves addressed threads.
Command
Scaffold a new frontend project following the 5-layer Clean Architecture (Domain, Service, Infrastructure, Presentation, Main).
Command
Scaffold a new Go backend project following Clean Architecture with domain/infrastructure separation, Dig DI, testify testing, and standard naming conventions.
Command
Scaffold a new Python package following PEP 621, PDM, Black/isort/Flake8, type hints, and Loguru logging.
Command
Sync all git repositories found recursively under the current directory (or a given path). For each repo discovered via find -name .git -type d.
Skill Claude CodeCodex
Review current branch changes against coding standards before submitting a PR. Catches issues before reviewers do.
Skill Claude CodeCodex
Fix all guardrail findings (make lint, make test, make sast) across repositories. Use when the user asks to fix linting errors, test failures, SAST findings, or run the full guardrail remediation workflow.
Skill Claude CodeCodex
Scaffold a new frontend project with 5-layer Clean Architecture (Domain, Service, Infrastructure, Presentation, Main). Use when the user asks to create, scaffold, or bootstrap a new frontend or React project.