最近新增

刚加入收藏的新技能,抢先试用。

显示 25-48 / 共 196 个技能
kbrdn1

speckit.plan

kbrdn1

Execute the implementation planning workflow using the plan template to generate design artifacts.

代码生成 3 今天
kbrdn1

speckit.install

kbrdn1

Bootstrap the SpecKit spec-driven development system into any project directory.

代码生成 3 今天
kbrdn1

speckit.implement

kbrdn1

Execute the implementation plan by processing and executing all tasks defined in tasks.md

模板 3 今天
kbrdn1

speckit.converge

kbrdn1

Assess the current codebase against the feature's spec, plan, and tasks, then append any remaining unbuilt work as new, traceable tasks to tasks.md so speckit.implement can complete it. Append-only — never rewrites spec/plan or existing tasks, never edits code.

代码生成 3 今天
kbrdn1

speckit.constitution

kbrdn1

Create or update the project constitution from interactive or provided principle inputs, ensuring all dependent templates stay in sync.

模板 3 今天
kbrdn1

speckit.clarify

kbrdn1

Identify underspecified areas in the current feature spec by asking up to 5 highly targeted clarification questions and encoding answers back into the spec.

数据处理 3 今天
kbrdn1

speckit.checklist

kbrdn1

Generate a custom checklist for the current feature based on user requirements.

设计 3 今天
kbrdn1

speckit.analyze

kbrdn1

Perform a non-destructive cross-artifact consistency and quality analysis across spec.md, plan.md, and tasks.md after task generation.

数据处理 3 今天
kbrdn1

spec-git-flow-worktree

kbrdn1

Spec-driven end-to-end GitHub workflow in an isolated git worktree — opens the issue via gh, creates a clean worktree with gwm, then runs the full Spec Kit cycle (speckit.specify → speckit.plan → speckit.tasks → speckit.implement) inside it, makes atomic Gitmoji/Conventional commits referencing the issue, pushes, and opens a PR. Issue-first numbering: the GitHub issue number drives the branch (<type>/#<issue>-<slug>) AND the spec directory (<issue>-<slug>). Triggers on "spec issue worktree PR", "speckit worktree flow", "spec-driven worktree", "specify then worktree then implement", and any request that combines speckit.specify/speckit.implement with gwm + gh issue. Use this skill (not spec-git-flow-branch) whenever the spec-driven change should live in an isolated worktree rather than the current checkout.

Git 与版本控制 3 今天
kbrdn1

spec-git-flow-branch

kbrdn1

Spec-driven end-to-end GitHub workflow on a branch in the current checkout — opens the issue via gh, creates a feature branch (<type>/#<issue>-<slug>) from the up-to-date default branch, then runs the full Spec Kit cycle (speckit.specify → speckit.plan → speckit.tasks → speckit.implement) on it, makes atomic Gitmoji/Conventional commits referencing the issue, pushes, and opens a PR. Issue-first numbering: the GitHub issue number drives the branch AND the spec directory (<issue>-<slug>). Triggers on "spec issue branch PR", "speckit branch flow", "spec-driven branch", "specify then branch then implement", and any request that combines speckit.specify/speckit.implement with a feature branch (NOT a worktree). Use this skill (not spec-git-flow-worktree) when the spec-driven change should live in the current checkout without a worktree.

Git 与版本控制 3 今天
DonArtkins

material-ui-theme

DonArtkins

"Build the MUI v6 theme from the Figma tokens: palette, typography, shape, transitions. The theme file is the single source of visual style."

设计 0 4天前
DonArtkins

auth-and-zustand

DonArtkins

"Web auth + client-state split: JWT access token in memory (Zustand), refresh token in an httpOnly cookie, silent refresh on boot, and the Zustand=client-only-state rule."

认证鉴权 0 4天前
DonArtkins

apollo-graphql

DonArtkins

"Apollo Client integration for Griot's GraphQL reads: single client, InMemoryCache typePolicies, colocated fragments, refetch discipline."

API 开发 0 4天前
DonArtkins

xunit-dotnet

DonArtkins

"xUnit unit + integration testing for the Griot backend: WebApplicationFactory against the real SQL Server container, refresh-rotation replay, bulk-atomicity, coverage collection."

测试 0 4天前
DonArtkins

owasp-review

DonArtkins

"OWASP Top-10 basics review for the Griot estate: injection (parameterized SQL), broken auth (refresh rotation), sensitive data (no localStorage tokens), CORS allow-list, AI principal scope."

认证鉴权 0 4天前
DonArtkins

newman-api

DonArtkins

"Newman CLI runs of the Postman collection in CI: API contract + regression suite, JSON schema assertions, chained tokens."

API 开发 0 4天前
DonArtkins

k6-perf

DonArtkins

"k6 load/performance testing for Griot: dashboard query, login, board read. Baseline (Week 6) vs regression (Week 7). p95 < 500ms target."

API 开发 0 4天前
DonArtkins

jest-rtl

DonArtkins

"Jest + React Testing Library for the Griot web app: component tests for TaskCard/BoardView/modals, mocked Apollo/React Query hooks, MSW for the copilot stub."

测试 0 4天前
DonArtkins

flutter-testing

DonArtkins

"Flutter widget + integration tests for the Griot mobile app: widget tests for key screens, integration_test for device flows, Docker-pinned runner in CI."

测试 0 4天前
AtomiCloud

writing-processor-javascript

AtomiCloud

Write or modify CyanPrint processor code in JavaScript. Use when the user asks to change file transformations, modify the entry point, handle file processing, or change output generation. Covers entry point (StartProcessorWithLambda), CyanFileHelper (read/write/copy/resolveAll), and VirtualFile (content/read/write). Processor lambda receives (input, fileHelper) as two parameters.

文件操作 0 5个月前
AtomiCloud

writing-processor-dotnet

AtomiCloud

Write or modify CyanPrint processor code in C#. Use when the user asks to change file transformations, modify the entry point, handle file processing, or change output generation. Covers entry point (CyanEngine.StartProcessor), CyanFileHelper (ResolveAll/Read/Copy), and VirtualFile (Content/WriteFile). Processor function receives (ProcessorInput, CyanFileHelper) as two parameters.

文件操作 0 5个月前
AtomiCloud

testing-processor

AtomiCloud

Test this CyanPrint processor. Use when the user asks to write processor tests, add test cases with input files, update snapshots, or debug processor test failures. Covers test.cyan.yaml format with input directories, config, validate commands, and expected output.

代码生成 0 5个月前
AtomiCloud

documenting-processor

AtomiCloud

Document this CyanPrint processor into README.MD. Use when the user asks to document the processor, write a README, explain processor configuration, or describe file transformations. Reads cyan.yaml and entry point code to extract config schema and file handling.

文件操作 0 5个月前
AtomiCloud

writing-plugin-typescript

AtomiCloud

Write or modify CyanPrint plugin code in TypeScript. Use when the user asks to add validation rules, change plugin behavior, modify the entry point, run commands from a plugin, or mutate files. Covers entry point (StartPluginWithLambda), native filesystem I/O (fs), and command execution (child_process). Plugins receive { directory, config } and use native OS operations.

文件操作 0 5个月前