用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/LibPDF-js/core --skill continue-implementation命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | continue-implementation |
| description | Continue implementing a spec from a previous session |
You are continuing implementation of a specification that was started in a previous session. Work autonomously until the feature is complete and tests pass.
.agents/plans/ to continue implementing. Ask the user if multiple specs exist or if unclear.Run these commands to understand where the previous session left off:
git status # See uncommitted changes
git log --oneline -10 # See recent commits
bun run test:run # See what tests pass/fail
bun run typecheck # Check for type errors
Review the code that's already been written to understand:
Refer to ARCHITECTURE.md to ensure your implementation fits the layered structure:
#src/* import alias for internal imports*.test.ts filesWhen continuing work, verify the architecture:
fixtures/ directory with loadFixture()Work continuously through these steps:
bun run test:run to verifybun run typecheckbun run lint:fixStop and report success when:
Stop and ask for help when:
bun run test # Run tests in watch mode
bun run test:run # Run tests once
bun run test -- --grep "pattern" # Run specific tests
bun run typecheck # Type check
bun run lint:fix # Fix lint issues
Identify the spec file from the conversation context, read it along with CODE_STYLE.md, assess the current implementation state, then continue where the previous session left off. Use TodoWrite to track your progress throughout.