Skip to main content
alkampfergit
GitHub 创作者资料

alkampfergit

按仓库查看 10 个 GitHub 仓库中的 56 个已收集 skills。

已收集 skills
56
仓库
10
更新
2026-07-11
这里展示前 8 个仓库;完整仓库列表在下方继续。
仓库浏览

仓库与代表性 skills

bugfix
软件质量保证分析师与测试员

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
当前展示该仓库 Top 8 / 14 个已收集 skills。
maintainer
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
当前展示该仓库 Top 8 / 9 个已收集 skills。
gstack-gh
软件开发工程师

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
信息安全分析师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
当前展示该仓库 Top 8 / 9 个已收集 skills。
cisharpai-expert
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件开发工程师

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
软件质量保证分析师与测试员

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 / 10 个仓库
已展示全部仓库