Skip to main content
albertoirurueta
Perfil de criador do GitHub

albertoirurueta

Visão por repositório de 87 skills coletadas em 6 repositórios do GitHub.

skills coletadas
87
repositórios
6
atualizado
7 de ago. de 2026
explorador de repositórios

Repositórios e skills representativas

iru-build-docs
Desenvolvedores de software

Build a repository's existing Antora documentation site, setting it up first (via `iru-setup-antora`) if it doesn't exist yet. Invoke as `/iru-build-docs`. Does no code exploration and makes no content edits to any existing page — it only ensures the…

25 de jul. de 2026
iru-check-license
Desenvolvedores de software

Check for a license file (LICENSE, LICENSE.txt, LICENSE.md, COPYING, etc.) in the repository root, and if one exists, verify every source and test file carries a header consistent with it. Learns the header format from files that already have one; if none…

25 de jul. de 2026
iru-check-security
Analistas de segurança da informação

Scan the repository for accidentally committed secrets (API keys, passwords, tokens, private keys, etc.) using the `detect-secrets` CLI (https://github.com/Yelp/detect-secrets). Checks whether `detect-secrets` is installed and, if it isn't, first checks for…

25 de jul. de 2026
iru-code
Desenvolvedores de software

Execute the tasks in implementation_plan.md at the repository root, one task group at a time — implement every task in a group (in parallel where the plan marks the group parallelizable), validate the whole group once (tests, coverage, code quality), and…

25 de jul. de 2026
iru-create-github-issue
Desenvolvedores de software

Draft and file a new GitHub issue that is ready to be picked up by the `/iru-issue`, `/iru-plan`, `/iru-code` flow. Runs the `iru-explore` skill first to ground the issue in the actual codebase, then asks the user for the purpose of the task to be…

25 de jul. de 2026
iru-database-code-one-task-group
Arquitetos de banco de dados

Implement every task in one database-tagged plan-group bucket by calling `iru-database-code-one-task` once per task, one at a time, in the plan's order — always sequential, regardless of the group's `Parallelizable` verdict, since database changes (schema…

25 de jul. de 2026
iru-database-code-one-task
Arquitetos de banco de dados

Generate (and, when a connected database MCP allows it, execute) the queries a single database-tagged plan task calls for — grounded in the actual schema/models discovered via the `iru-explore` skill's findings (reused from earlier in the conversation if…

25 de jul. de 2026
iru-dotnet-code-one-task
Desenvolvedores de software

Implement a single task from a .NET `implementation_plan.md`-style task list — just the implementation and its tests. Re-checks the current code state, implements exactly what the task specifies, writes/updates test-framework tests (xUnit/NUnit/MSTest,…

25 de jul. de 2026
Mostrando 8 de 31 skills coletadas.
setup-java-gitignore
Desenvolvedores de software

Create or update the root `.gitignore` file for a Java project — compiled classes, logs, packaged

9 de jul. de 2026
setup-java-library-repository
Desenvolvedores de software

End-to-end bootstrap for a brand-new Java/Maven library repository — collects the project's identity (groupId, artifactId, base package, developer name/email/organizationUrl, license) and pipeline parameters (integration branch, Java version, publishing…

9 de jul. de 2026
release
Desenvolvedores de software

Convert the current SNAPSHOT version into a final release. Must be run from the `develop` branch (gitflow) — warns and stops otherwise. Asks the user for the release version (current SNAPSHOT stripped, a patch bump, or a major bump) and the next upcoming…

9 de jul. de 2026
setup-changelog
Desenvolvedores de software

Bootstrap a root `CHANGELOG.md` for a repository that doesn't have one yet, by exploring its actual release history (git tags and, if hosted on GitHub, GitHub Releases) and backfilling one entry per past release in Keep a Changelog format. Invoke as…

9 de jul. de 2026
setup-readme
Desenvolvedores de software

Create or update the root `README.md` for a repository — a brief description, badges (CI status, SonarCloud/SonarQube, etc.), a project status table (language, versions, license, CI, quality tools), documentation links (Antora site, Maven site report,…

9 de jul. de 2026
update-docs
Desenvolvedores de software

Update a repository's Antora AsciiDoc documentation to reflect changes already made to the codebase (new/changed APIs, types, behavior, or conventions). Invoke as `/update-docs` to cover uncommitted changes plus commits on the current branch not yet on the…

9 de jul. de 2026
antora-setup
Desenvolvedores de software

Set up an Antora documentation site in a repository that doesn't have one yet — installs Node.js/Antora prerequisites, scaffolds `docs/antora.yml` and `docs/antora-playbook.yml`, and builds a minimal ROOT module with `index.adoc`, `installation.adoc`, and…

9 de jul. de 2026
issue
Desenvolvedores de software

End-to-end kickoff for a GitHub issue — requires an issue ID, unlike `explore`/`plan` this skill stops if none is given. Fetches the issue, classifies it as a feature or a hotfix from its labels/content, creates a `feature/<issue-id>` or `hotfix/<issue-id>`…

8 de jul. de 2026
Mostrando 8 de 18 skills coletadas.
iru-setup-java-springboot-apis
Desenvolvedores de software

Set up the contract-first API layer of a Spring Boot service — the single `apis/` directory at the repository root holding every contract (`apis/rest-server/` OpenAPI specs, `apis/grpc-server/` protobuf definitions, `apis/graphql-server/` SDL schemas,…

7 de ago. de 2026
iru-setup-java-springboot-github-workflows
Desenvolvedores de software

Create the GitHub Actions workflows for a Spring Boot service repository — a build workflow (`build.yml`) that runs on pushes to the integration and main branches and on pull requests, executing unit tests via Surefire and Testcontainers-backed integration…

7 de ago. de 2026
iru-setup-java-springboot-modules
Desenvolvedores de software

Scaffold the source tree of a DDD/hexagonal Spring Boot service whose Maven reactor already exists — the package layout for every module, the ports (interfaces) that `domain` defines, a worked adapter skeleton per `infrastructure`/`api` module (repository…

7 de ago. de 2026
iru-setup-java-springboot-pom
Desenvolvedores de software

Generate the Maven reactor for a DDD/hexagonal Spring Boot service — the root `pom.xml` (the single place every dependency and plugin version is declared) plus one `pom.xml` per module (`domain`, `application`, `infrastructure/database/<engine>`,…

7 de ago. de 2026
iru-setup-java-springboot
Desenvolvedores de software

End-to-end bootstrap for a brand-new Spring Boot service repository built on DDD + hexagonal architecture as a Maven multi-module reactor (`boot`, `application`, `domain`, `infrastructure/*`, `api/*`). Collects the project's identity (groupId, artifactId,…

7 de ago. de 2026
iru-setup-java-springboot-testcontainers
Desenvolvedores de software

Set up the local-execution and integration-test infrastructure for a Spring Boot service — a `compose.yaml` at the repository root with one pinned service per technology the stack uses (MongoDB, Couchbase, PostgreSQL/pgvector, MariaDB, Elasticsearch, Neo4j,…

7 de ago. de 2026
iru-setup-java-springboot-platform
Desenvolvedores de software

Generate the OpenTofu (Terraform-compatible) infrastructure-as-code that deploys a Spring Boot service to AWS or Google Cloud, derived from the technologies the service actually uses — a remote encrypted state backend, a keyless GitHub OIDC deployment role, a…

6 de ago. de 2026
iru-setup-java-library-repository
Desenvolvedores de software

End-to-end bootstrap for a brand-new Java/Maven library repository — collects the project's identity (groupId, artifactId, base package, developer name/email/organizationUrl, license) and pipeline parameters (integration branch, Java version, publishing…

6 de ago. de 2026
Mostrando 8 de 17 skills coletadas.
antora-setup
Desenvolvedores de software

Set up an Antora documentation site in a repository that doesn't have one yet — installs Node.js/Antora prerequisites, scaffolds `docs/antora.yml` and `docs/antora-playbook.yml`, and builds a minimal ROOT module with `index.adoc`, `installation.adoc`, and…

14 de jul. de 2026
check-security
Analistas de segurança da informação

Scan the repository for accidentally committed secrets (API keys, passwords, tokens, private keys, etc.) using the `detect-secrets` CLI (https://github.com/Yelp/detect-secrets). Checks whether `detect-secrets` is installed and, if it isn't, first checks for…

14 de jul. de 2026
generate-skill-docs
Desenvolvedores de software

Analyze every Claude Code skill (`.claude/skills/*/SKILL.md`) and agent (custom definitions under `.claude/agents/*.md`, plus built-in agent types referenced from skills via the `Agent` tool) defined in this repository, and generate/update the Antora…

14 de jul. de 2026
code
Desenvolvedores de software

Execute the tasks in implementation_plan.md at the repository root, one at a time — implement each task per the plan, add or update tests achieving at least 80% coverage for the changed code, run the full test suite, verify the task introduced no new…

13 de jul. de 2026
create-github-issue
Desenvolvedores de software

Draft and file a new GitHub issue that is ready to be picked up by the `/issue`, `/plan`, `/code` flow. Runs the `explore` skill first to ground the issue in the actual codebase, then asks the user for the purpose of the task to be implemented, then asks for…

13 de jul. de 2026
create-jira-ticket
Desenvolvedores de software

Draft and file a new Jira ticket that is ready to be picked up by the `/issue`, `/plan`, `/code` flow. Runs the `explore` skill first to ground the ticket in the actual codebase, then asks the user for the purpose of the task to be implemented, then asks for…

13 de jul. de 2026
dotnet-code-one-task
Desenvolvedores de software

Implement a single task from a .NET `implementation_plan.md`-style task list end-to-end — implementation, test-framework tests (xUnit/NUnit/MSTest, whichever the project uses), license headers, XML doc comments, a scoped test run, an 80% coverage check, a…

13 de jul. de 2026
dotnet-code-quality
Analistas de garantia de qualidade de software e testadores

Run this .NET/C# project or solution's Roslyn analyzers — StyleCop.Analyzers for style/formatting (the .NET equivalent of Checkstyle) and Microsoft.CodeAnalysis.NetAnalyzers' CA rules for code-quality/design/reliability/security bug detection (the .NET…

13 de jul. de 2026
Mostrando 8 de 17 skills coletadas.
Mostrando 6 de 6 repositórios
Todos os repositórios foram exibidos