Skip to main content
alkampfergit
GitHub-Creator-Profil

alkampfergit

Repository-Ansicht von 56 gesammelten Skills in 10 GitHub-Repositories.

gesammelte Skills
56
Repositories
10
aktualisiert
2026-07-11
Hier werden die Top 8 Repositories angezeigt; die vollständige Repository-Liste folgt darunter.
Repository-Explorer

Repositories und repräsentative Skills

bugfix
Softwarequalitätssicherungsanalysten und -tester

Fix a GitHub bug issue end-to-end — analyze the codebase, write failing tests, commit them to a bugfix/<id> branch, implement the fix, and open a PR with a full investigation log. After the PR opens, poll it for owner feedback at configurable intervals until stood down. Trigger on a single issue (/bugfix

2026-06-26
maintainer
Softwareentwickler

Routine repository security-maintenance pass. Create a fresh branch, use the gh CLI to enumerate security problems (Dependabot, code scanning, secret scanning), fix the actionable ones, verify, open a pull request, then hand off to /github-pr-fixer. Use when the user says "run maintainer", "do a security maintenance pass", "fix the security problems and open a PR", or similar.

2026-06-20
speckit-gh
Softwareentwickler

Drive a single GitHub issue through the full speckit pipeline (specify → clarify → plan → tasks → PR-report → draft PR → implement → test → ready → CI → review) using the `gh` CLI. Fully human-in-the-loop — every speckit phase posts its artefact on the issue and polls for owner approval. All user communication stays on the issue / PR threads, never the console. Use when the user says "implement issue

2026-06-11
sonarcloud-pr-fix
Softwareentwickler

Use when the user wants to find SonarCloud issues for the current branch pull request, fix them in the local repo, verify with local checks, push the branch, and confirm whether SonarCloud has reanalyzed the PR.

2026-06-08
sonarcloud
Softwareentwickler

Analyze and fix SonarCloud issues on pull requests. Use when the user mentions SonarCloud, quality gate, code smells, duplication, or wants to check PR quality status. Reads issues via GitHub API, creates fix plans, and applies fixes with awareness of parallel agent safety.

2026-06-05
changelog
Softwareentwickler

Keep a slim, human-readable CHANGELOG. The root CHANGELOG.md holds only a short stanza per release (theme + a few brief bullets + a link); full per-release detail lives in docs/changelogs/<version>.md, with docs/changelogs/unreleased.md accumulating the next release. Versions follow the tags on master — if master is at 0.11.x, unreleased work on develop belongs to 0.12.0. Use when the user says "record a changelog entry", "update the changelog", "finalise the changelog for a release", or "split the changelog".

2026-06-01
gitflow
Softwareentwickler

Drive a gitflow release end-to-end — resolve the current version from the latest tag on master, compute the next version (minor bump by default, or caller-specified), run `git flow release start/finish`, and push `master`, `develop`, and the new tag. Use when the user says "release X.Y.Z", "cut a release", or when speckit-full picks up a release issue.

2026-04-24
fixer
Softwareentwickler

Repair common "repo is not in a clean state" situations so another skill (e.g. `speckit-full`) can proceed. Use when the caller reports pending/uncommitted changes on develop/master, a branch that hasn't been pushed, or a push that was rejected because the remote has newer commits. Does NOT touch state that looks intentional (merge in progress, detached HEAD, untracked files that look like secrets, etc.) — surfaces those to the user instead.

2026-04-24
Zeigt die Top 8 von 14 gesammelten Skills in diesem Repository.
maintainer
Softwareentwickler

Re-analyze the template/ folder for internal consistency, keep template/structure.md (an annotated map of the template layout) up to date, and keep the meta/skill-list.md index in sync with the template skills. Use when checking template consistency, after adding/renaming/removing files under template/, when verifying internal links and skill tables resolve, or when asked to "run the maintainer", "check the template", "audit the template", or "update the template structure". Do NOT use for ingesting external sources (use ingest-link) or for editing project content unrelated to template consistency.

2026-07-04
skill-author
Softwareentwickler

Author, update, or remove a Claude Code skill inside the template (template/.claude/skills/), following meta/skill-guide.md as the design rubric, and keep the meta/skill-list.md index table in sync. Use when asked to create a new template skill, write a skill, add a skill to the template, update or rename an existing template skill, or regenerate the template skill list. Do NOT use to author authoring-repo skills under the root .claude/skills/ (those are not part of the template product).

2026-07-04
ingest-link
Softwareentwickler

Ingest an external URL as a knowledge source: fetch and analyse it, record an entry in knowledge/links.md, write detailed notes under knowledge/sources/, then patch the affected template docs and structure. Use when a new article, paper, blog post, documentation page, or talk transcript should inform the harness engineering template, or when the user provides a URL to "ingest", "add to the knowledge base", or runs "/ingest-link <url>".

2026-06-29
doc-gardening
Softwareentwickler

Scan the repository for stale, broken, or missing documentation and repair the highest-priority issues. Use when auditing docs, checking AGENTS links, reconciling docs with code, or running periodic documentation maintenance.

2026-04-12
add-domain
Softwareentwickler

Bootstrap a new business domain or bounded context with scaffolding, architecture updates, and structural tests. Use when adding a new domain, introducing a new business capability, creating a new module under src/domains, defining a bounded context, or establishing domain boundaries.

2026-04-05
bug-fix
Softwareentwickler

Reproduce and fix reported bugs with test-first verification and root-cause analysis. Use when debugging a defect, investigating unexpected behavior, triaging a regression, or implementing a minimal corrective fix.

2026-04-05
meta
Softwareentwickler

Capture reusable agent behavior and best practices as a skill update or a new skill after task completion. Use when a task reveals a repeatable workflow, exposes missing instructions, or surfaces a pattern worth preserving for future tasks. Examples: update an existing skill, create a skill for a new workflow, document guidance the agent should reuse, or refine repository skills after delivery. Review existing skills first, create new only when the scope is clearly distinct, and do not use this skill for one-off fixes with no reuse value. After the first draft, launch a subagent to refine the skill against meta/skill-guide.md.

2026-04-05
new-feature
Softwareentwickler

End-to-end workflow for adding a new feature from a task or prompt description. Use when implementing a new capability, adding an endpoint, introducing a new service method, or building a new UI component.

2026-04-05
Zeigt die Top 8 von 9 gesammelten Skills in diesem Repository.
gstack-gh
Softwareentwickler

Take a single GitHub issue (by number or URL) and drive it through an end-to-end flow (branch → plan → build → test → PR) using the `gh` CLI. All user interaction happens through issue comments, never the console. Use when the user says "implement issue

2026-04-21
gh-security-and-quality
Informationssicherheitsanalysten

Triage and fix GitHub-reported security and quality findings — Dependabot alerts, code-scanning (CodeQL) alerts, and secret / malware scanning alerts — for this repository using `gh`, `npm`, and language-specific toolchains. Use when the user asks to review the Security tab, clear open alerts across any of the three surfaces, merge Dependabot PRs, or explain why an alert is safe to dismiss. Pairs with the `gh-cli-guide` skill for the underlying API calls. Does NOT auto-invoke `github-pr-fixer` — once a fix PR is opened, this skill stops and the owner chooses whether to run `/github-pr-fixer` manually.

2026-04-20
gstack-full
Softwareentwickler

Poll GitHub for open issues carrying a user-specified label and drive each one through gstack's end-to-end flow (plan → build → test → ship) via the `gstack-gh` skill. Use when the user says "watch GH for issues with label X and implement them", "auto-process the backlog", or "poll for ready stories". Supports three scheduling modes — in-session loop, self-paced loop, or cron (remote trigger).

2026-04-20
bug-fix
Softwareentwickler

Reproduce and fix reported bugs with test-first verification and root-cause analysis. Use when debugging a defect, investigating unexpected behavior, triaging a regression, or implementing a minimal corrective fix.

2026-04-15
doc-gardening
Softwareentwickler

Scan the repository for stale, broken, or missing documentation and repair the highest-priority issues. Use when auditing docs, checking AGENTS links, reconciling docs with code, or running periodic documentation maintenance.

2026-04-15
new-feature
Softwareentwickler

End-to-end workflow for adding a new feature from a task or prompt description. Use when implementing a new capability, adding an endpoint, introducing a new service method, or building a new UI component.

2026-04-15
refactor
Softwareentwickler

Improve code structure without changing behavior using safe, test-preserving refactoring steps. Use when extracting helpers, splitting files, reducing duplication, aligning with repository patterns, or cleaning up code.

2026-04-15
small-change
Softwareentwickler

End-to-end workflow for implementing a small scoped change while preserving every harness engineering invariant (dependency rules, tests, lint, structural checks, boundary validation, docs, ADRs, quality grades, versioning). Use for scoped single-domain tweaks that touch only a handful of files: tightening a validation, correcting a config default, adjusting a log line, updating a small piece of documented behavior, or making a narrow non-bug behavior adjustment. Not for defect investigation or corrective bug fixes (use `bug-fix`), not for multi-domain features (use `new-feature`), not for behavior-preserving restructure (use `refactor`).

2026-04-15
Zeigt die Top 8 von 9 gesammelten Skills in diesem Repository.
cisharpai-expert
Softwareentwickler

Expert guidance for the Cisharpai .NET library — a unified HttpClient-based interface for OpenAI, Azure OpenAI, Azure AI Inference, Anthropic, and Cohere LLM providers. Use when writing, debugging, or architecting code that uses Cisharpai clients, features, DTOs, DI registration, or provider-specific integrations. Activates on mentions of "Cisharpai", "IChatCompletionClient", "IEmbeddingClient", provider setup, tool calling, streaming, JSON output, grounded chat, vision, embeddings, or fake clients for testing.

2026-05-19
speckit-retrospec
Softwareentwickler

Reverse-engineer speckit specification files (spec.md, plan.md, and supporting artifacts) from an already-implemented feature in the codebase. Use when the code exists but no speckit specs do. Tasks.md generation is skipped by default (add '--tasks' to include it).

2026-05-15
sonarcloud
Softwareentwickler

Analyze and fix SonarCloud issues on pull requests. Use when the user mentions SonarCloud, quality gate, code smells, duplication, or wants to check PR quality status. Reads issues via GitHub API, creates fix plans, and applies fixes with awareness of parallel agent safety.

2026-05-06
sonarcloud-pr-fix
Softwareentwickler

Use when the user wants to find SonarCloud issues for the current branch pull request, fix them in the local repo, verify with local checks, push the branch, and confirm whether SonarCloud has reanalyzed the PR.

2026-04-30
speckit-gh
Softwareentwickler

Drive a single GitHub issue through the full speckit pipeline (specify → clarify → plan → tasks → PR-report → draft PR → implement → test → ready → CI → review) using the `gh` CLI. Fully human-in-the-loop — every speckit phase posts its artefact on the issue and polls for owner approval. All user communication stays on the issue / PR threads, never the console. Use when the user says "implement issue

2026-04-30
pr-expert
Softwarequalitätssicherungsanalysten und -tester

Diagnose failing pull request checks across GitHub Actions and external status providers such as SonarCloud and CodeQL. Use when a user asks why a PR is red, which check is blocking merge, why CI passed but the pull request still fails, why branch protection is not satisfied, or what file needs to change to fix a failing status. Determines whether the failing check belongs to github-actions or an external app, traces the exact root cause, and identifies the smallest correct fix.

2026-03-13
10 von 10 Repositories angezeigt
Alle Repositories angezeigt