Skip to main content

albertoirurueta/irurueta-navigation

SkillsMP has collected 31 skills from albertoirurueta/irurueta-navigation. Open a skill to review its source and details.

Latest recorded source activity
SkillsMP catalog refreshed
skills collected
31
GitHub stars
3
GitHub forks
2

Showing 31 of 31 collected skills.

occupation
Software Developers
description

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…

updated
occupation
Software Developers
description

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…

updated
occupation
Information Security Analysts
description

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…

updated
occupation
Software Developers
description

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…

updated
occupation
Software Developers
description

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…

updated
occupation
Database Architects
description

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…

updated
occupation
Database Architects
description

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…

updated
occupation
Software Developers
description

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,…

updated
occupation
Software Quality Assurance Analysts & Testers
description

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…

updated
occupation
Software Quality Assurance Analysts & Testers
description

Generate a code coverage report for a .NET project or solution via `dotnet test --collect:"XPlat Code Coverage"` (the Coverlet collector), scoped to the test selector given (same selector syntax as the `iru-dotnet-test` skill), then read the generated…

updated
occupation
Software Developers
description

Audit given C# class(es)/type(s) for complete XML doc-comment coverage — type-level `<summary>` (and `<typeparam>` for generics), every field/property/constant/event, every constructor/method (including private ones and any nested type or enum member) —…

updated
occupation
Software Quality Assurance Analysts & Testers
description

For a .NET/C# project or solution only, explore the whole codebase to find every class that has no corresponding unit test class, or whose measured line coverage falls below 80%, using the `iru-dotnet-coverage` skill to get the exact percentage per class —…

updated
occupation
Software Quality Assurance Analysts & Testers
description

Run a .NET project or solution's test suite via the .NET CLI (`dotnet test`), optionally scoped to specific test classes, methods, namespaces, or trait/category filters, and optionally targeted at a specific project (`.csproj`) or solution (`.sln`) file.…

updated
occupation
Software Developers
description

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…

updated
occupation
Software Developers
description

End-to-end kickoff for a tracked ticket — a GitHub issue or a Jira ticket, auto-detected like `iru-explore` — requires a ticket ID, unlike `iru-explore`/`iru-plan` this skill stops if none is given. Fetches the ticket, classifies it as a feature or a hotfix…

updated
occupation
Software Developers
description

Implement a single task from a Java `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 JUnit tests, then hands back a short summary…

updated
occupation
Software Quality Assurance Analysts & Testers
description

Run this project's static-analysis Maven plugins — Checkstyle, PMD, and SpotBugs — via `mvn clean compile checkstyle:checkstyle pmd:pmd spotbugs:spotbugs`, then read the generated `target/checkstyle-result.xml`, `target/pmd.xml`, and `target/spotbugsXml.xml`…

updated
occupation
Software Quality Assurance Analysts & Testers
description

Generate a JaCoCo code coverage report via `mvn clean jacoco:prepare-agent test jacoco:report`, scoped to the test selector given (same selector syntax as the `iru-java-test` skill), then read the generated `target/site/jacoco/jacoco.csv` to report the exact…

updated
occupation
Software Quality Assurance Analysts & Testers
description

For a Java/Maven project only, explore the whole codebase to find every class that has no corresponding unit test class, or whose measured line coverage falls below 80%, using the `iru-java-coverage` skill to get the exact percentage per class — then generate…

updated
occupation
Software Developers
description

Audit given Java class(es) for complete Javadoc coverage — class/interface/enum-level doc, every field/constant, every constructor/method (including private ones and any inner/nested class or enum constant), and a `package-info.java` with a brief description…

updated
occupation
Software Quality Assurance Analysts & Testers
description

Run a Java project's JUnit test suite via the Maven Surefire plugin (`mvn test`), optionally scoped to specific test classes, methods, packages, or tags. Invoke as `/iru-java-test` to run the full suite, or `/iru-java-test <selector>` where `<selector>` names…

updated
occupation
Software Developers
description

Generate an implementation_plan.md at the repository root detailing the tasks needed to complete a piece of work, optionally grounded in a specific GitHub issue or Jira ticket. Invoke as `/iru-plan <ticket-id>` to plan for that ticket (a GitHub issue ID or…

updated
occupation
Software Developers
description

Check the current branch's code changes and draft a brief, concise pull request description (emojis and diagrams allowed where they genuinely clarify). Detects which platform hosts the repository — GitHub, Bitbucket, Azure DevOps, or TFS — and uses that…

updated
occupation
Software Quality Assurance Analysts & Testers
description

Review an already-open pull request's changes by id, on whichever platform hosts the repository (GitHub, Bitbucket, Azure DevOps, or TFS) and whatever language(s)/framework(s) are in play — both detected via the `iru-explore` skill and used throughout instead…

updated
occupation
Software Developers
description

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…

updated
occupation
Web Developers
description

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…

updated
occupation
Software Developers
description

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…

updated
occupation
Software Developers
description

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

updated
occupation
Software Developers
description

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…

updated
occupation
Software Developers
description

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,…

updated
occupation
Software Developers
description

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

updated
Showing 31 of 31 collected skills.