Skip to main content
albertoirurueta
ملف منشئ GitHub

albertoirurueta

عرض على مستوى المستودعات لـ ٨٧ skills مجمعة عبر ٦ مستودعات GitHub.

skills مجمعة
٨٧
مستودعات
٦
محدث
٧ أغسطس ٢٠٢٦
خريطة المستودعات

أين توجد skills

أهم المستودعات حسب عدد skills المجمعة، مع حصتها من كتالوج هذا المنشئ وانتشارها المهني.

مستكشف المستودعات

المستودعات و skills الممثلة

iru-build-docs
مطوّرو البرمجيات

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…

٢٥ يوليو ٢٠٢٦
iru-check-license
مطوّرو البرمجيات

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…

٢٥ يوليو ٢٠٢٦
iru-check-security
محللو أمن المعلومات

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…

٢٥ يوليو ٢٠٢٦
iru-code
مطوّرو البرمجيات

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…

٢٥ يوليو ٢٠٢٦
iru-create-github-issue
مطوّرو البرمجيات

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…

٢٥ يوليو ٢٠٢٦
iru-database-code-one-task-group
مصممو قواعد البيانات

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…

٢٥ يوليو ٢٠٢٦
iru-database-code-one-task
مصممو قواعد البيانات

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…

٢٥ يوليو ٢٠٢٦
iru-dotnet-code-one-task
مطوّرو البرمجيات

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

٢٥ يوليو ٢٠٢٦
عرض 8 من أصل ٣١ skills مجمعة.
setup-java-gitignore
مطوّرو البرمجيات

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

٩ يوليو ٢٠٢٦
setup-java-library-repository
مطوّرو البرمجيات

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…

٩ يوليو ٢٠٢٦
release
مطوّرو البرمجيات

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…

٩ يوليو ٢٠٢٦
setup-changelog
مطوّرو البرمجيات

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…

٩ يوليو ٢٠٢٦
setup-readme
مطوّرو البرمجيات

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

٩ يوليو ٢٠٢٦
update-docs
مطوّرو البرمجيات

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…

٩ يوليو ٢٠٢٦
antora-setup
مطوّرو البرمجيات

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…

٩ يوليو ٢٠٢٦
issue
مطوّرو البرمجيات

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 من أصل ١٨ skills مجمعة.
iru-setup-java-springboot-apis
مطوّرو البرمجيات

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

٧ أغسطس ٢٠٢٦
iru-setup-java-springboot-github-workflows
مطوّرو البرمجيات

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…

٧ أغسطس ٢٠٢٦
iru-setup-java-springboot-modules
مطوّرو البرمجيات

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…

٧ أغسطس ٢٠٢٦
iru-setup-java-springboot-pom
مطوّرو البرمجيات

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

٧ أغسطس ٢٠٢٦
iru-setup-java-springboot
مطوّرو البرمجيات

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

٧ أغسطس ٢٠٢٦
iru-setup-java-springboot-testcontainers
مطوّرو البرمجيات

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

٧ أغسطس ٢٠٢٦
iru-setup-java-springboot-platform
مطوّرو البرمجيات

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…

٦ أغسطس ٢٠٢٦
iru-setup-java-library-repository
مطوّرو البرمجيات

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…

٦ أغسطس ٢٠٢٦
عرض 8 من أصل ١٧ skills مجمعة.
antora-setup
مطوّرو البرمجيات

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…

١٤ يوليو ٢٠٢٦
check-security
محللو أمن المعلومات

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…

١٤ يوليو ٢٠٢٦
generate-skill-docs
مطوّرو البرمجيات

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…

١٤ يوليو ٢٠٢٦
code
مطوّرو البرمجيات

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…

١٣ يوليو ٢٠٢٦
create-github-issue
مطوّرو البرمجيات

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…

١٣ يوليو ٢٠٢٦
create-jira-ticket
مطوّرو البرمجيات

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…

١٣ يوليو ٢٠٢٦
dotnet-code-one-task
مطوّرو البرمجيات

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…

١٣ يوليو ٢٠٢٦
dotnet-code-quality
محللو ضمان جودة البرمجيات والمختبرون

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…

١٣ يوليو ٢٠٢٦
عرض 8 من أصل ١٧ skills مجمعة.
عرض ٦ من أصل ٦ مستودعات
تم تحميل كل المستودعات