con un clic
implement
Implement improvements from a goals file by section number or name
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Implement improvements from a goals file by section number or name
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Regenerate app/gui/audio_goals.md with a fresh comprehensive analysis of the AudioPlayer component
Regenerate app/gui/goals.md with a fresh comprehensive analysis of the Veiled desktop app (excluding AudioPlayer and VideoPlayer internals)
Regenerate app/gui/video_goals.md with a fresh comprehensive analysis of the VideoPlayer component
Update app/gui/CLAUDE.md to match the current codebase state
Low-level Cardano utilities with @meshsdk/core-cst
Cardano transaction building with @meshsdk/transaction
| name | implement |
| description | Implement improvements from a goals file by section number or name |
| argument-hint | [gui|video|audio] <section-number-or-name> |
Resolve the goals file from $ARGUMENTS, then find the matching section (by number, title, or keyword).
Goal file resolution: The first word of $ARGUMENTS selects the goals file:
gui / goals / general → app/gui/goals.mdvideo / video_goals → app/gui/video_goals.mdaudio / audio_goals → app/gui/audio_goals.mdIf the first word doesn't match any alias, ask the user which goals file to use before proceeding.
The remaining words after the file alias are the section selector (number, title, or keyword).
This skill is designed to be resumable across context windows. The checked/unchecked state of items in the goals file is the persistence mechanism — always read it fresh at the start of each session.
- [ ]) from the matching section. Skip any items already marked - [x] — those were completed in a previous session.- [x])
g. Commit only your files — see Commit Discipline section belowMultiple implement agents may run concurrently on different sections. Never run bash test.sh (full suite) or do git stash/pop — these interfere with parallel agents.
Instead, run tests only for the files you changed:
cd fe && npx vitest run src/path/to/__tests__/YourFile.test.ts 2>&1 | tail -n 30
cd be && npx vitest run src/path/to/__tests__/YourFile.test.ts 2>&1 | tail -n 30
cd fe && npx eslint src/path/to/YourFile.tsx 2>&1 | tail -n 30
cd be && npx eslint src/path/to/YourFile.ts 2>&1 | tail -n 30
git add <file1> <file2> ... with explicit paths from your tracked file list. Never use git add -A, git add ., or stage files you did not touch.git status shows other modified files you did not touch, leave them alone — another agent or the user is working on themThe goals file is the one file every implement agent modifies. If your commit fails because another agent changed it since you last read it:
- [ ] → - [x] for the item you just completed)This skill is designed to be invoked repeatedly with the same arguments across multiple context windows:
- [x] items were completed previously — skip them. Pick up from the first unchecked - [ ] item.- [x]2>&1 | tail -n 30 so output is captured concisely