mattpocock/course-video-manager · Archived

do-work

End-to-end implementation workflow. Use when user wants to implement a feature, fix a bug, or make changes and have everything validated and committed.

First seen Jul 2, 2026

Installation

$ npx skills add mattpocock/course-video-manager --skill do-work

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from mattpocock/course-video-manager.

npx skills add mattpocock/course-video-manager

Browse all from mattpocock/course-video-manager

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 723
Default branch main
Open issues 33
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 940 B
  • docs SUMMARY.md 166 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 12 installs

SKILL.md

Do Work

Complete implementation workflow from exploration to commit.

Workflow

Phase 1: Explore & Plan

Phase 2: Implement

If you're touching code that interacts with the database, follow the [DB TDD workflow](DB-TDD.md).

If you're touching frontend code with complex state (creating/modifying reducers, complex state transitions, non-trivial state management), follow the [Frontend TDD workflow](FRONTEND-TDD.md).

Phase 3: Feedback Loops

Run each check, fix issues, and re-run until clean. Do these sequentially:

  1. Type checking: pnpm run typecheck
  2. Tests: pnpm test

If a check fails, fix the issue and re-run that check before moving to the next one. Do not move on with failing checks.

Phase 4: Commit