Agent skill · Testing & QA

skillshare-implement-feature

Implement a feature from a spec file or description using TDD workflow. Use this skill whenever the user asks to: add a new CLI command, implement a feature from a spec, build new functionality, add a flag, create a new internal package, or write Go code for skillshare. This skill enforces test-first development, proper handler split conventions, oplog instrumentation, and dual-mode (global/project) patterns. If the request involves writing Go code and tests, use this skill — even if the user doesn't explicitly say "implement".

runkidsgithub.com/runkidsGitHub ↗
claude-codecodexcopilotcursorMIT
Install
npx skills add runkids/skillshare --skill skillshare-implement-feature --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 8 KB
Bundled scripts: none
Path: .skillshare/skills/skillshare-implement-feature/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 2,519
Language: Go
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

Implement a feature following TDD workflow. $ARGUMENTS is a spec file path (e.g., `specs/my-feature.md`) or a plain-text feature description. **Scope**: This skill writes Go code and tests. It does NOT update website docs (use `update-docs` after) or CHANGELOG (use `changelog` after). ## Workflow ### Step 1: Understand Requirements If $ARGUMENTS is a file path: 1. Read the spec file 2. Extract acceptance criteria and edge cases 3. Identify affected packages If $ARGUMENTS is a description: 1. Search existing code for related functionality 2. Identify the right package to extend 3. Confirm scope with user before proceeding ### Step 2: Identify Affected Files List all files that will be created or modified: ```bash # Typical pattern for a new command cmd/skillshare/<command>.go # Command handler cmd/skillshare/<command>_project.go # Project-mode handler (if dual-mode) internal/<package>/<feature>.go # Core logic tests/integration/<command>_test.go # Integration test ``` Display the file list and continue. If scope is unclear, ask the user. ### Step 3: Write Failing Tests First (RED) Write integration tests using `testutil.Sandbox`: ```go func TestFeature_BasicCase(t *testing.T) { sb :

What's inside
Steps it walks through
  1. Workflow
  2. Step 1: Understand Requirements
  3. Step 2: Identify Affected Files
  4. Step 3: Write Failing Tests First (RED)
  5. Step 4: Implement (GREEN)
  6. Step 5: Refactor and Verify
  7. Project Patterns Reference
  8. Handler Split Convention
  9. Dual-Mode Command Pattern
  10. TUI Components (bubbletea)
  11. Web API Endpoint
  12. Oplog Instrumentation
  13. Step 6: E2E Runbook (Major Features Only)
  14. Step 7: Stage and Report
Commands it runs
Typical pattern for a new command
make test-int
or run specific test:
go test ./tests/integration -run TestFeature_BasicCase
make check  # fmt-check + lint + test
More from skillshare
All skills →
About this skill
What does the skillshare-implement-feature skill do?

Implement a feature from a spec file or description using TDD workflow. Use this skill whenever the user asks to: add a new CLI command, implement a feature from a spec, build new functionality, add a flag, create a new internal package, or write Go code for skillshare. This skill enforces test-first development, proper handler split conventions, oplog instrumentation, and dual-mode (global/project) patterns. If the request involves writing Go code and tests, use this skill — even if the user doesn't explicitly say "implement".

How do I install it?

Run `npx skills add runkids/skillshare --skill skillshare-implement-feature --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From runkids/skillshare, a repository with 2,519 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going