一键导入
loopify
Read a PRD or assessment doc and generate a loop-optimized continuation prompt that drives iterative implementation across multiple sessions.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Read a PRD or assessment doc and generate a loop-optimized continuation prompt that drives iterative implementation across multiple sessions.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Commit uncommitted changes in thematic groups with short messages that follow the repo's semantic conventions. Use this skill when the user asks to commit, "do commits", "group commits", or "commit these changes".
Reviews code changes, provides suggestions for improvement, identifies bugs, and enforces best practices. Use this skill when the user asks you to review code, check for issues, suggest improvements, or audit changes before committing.
Generates daily standup summaries by analyzing recent file changes, git history, and workspace activity. Use this skill when the user asks for a standup update, daily summary, progress report, or wants to know what changed recently.
Helps manage and understand the Fluxy workspace structure. Use this skill whenever the user asks about the project layout, file organization, where things are, how the workspace is structured, or needs help navigating the codebase. Also use when the user asks to scaffold new components, pages, or API routes.
| name | loopify |
| description | Read a PRD or assessment doc and generate a loop-optimized continuation prompt that drives iterative implementation across multiple sessions. |
| argument-hint | <path-to-prd-or-assessment-doc> |
You are generating a loop-optimized continuation prompt — a structured document that an agent picks up at the start of each session, works through, and updates before ending. The loop runs until the project is complete.
Read the file at $ARGUMENTS. This is the PRD, assessment, or spec that defines what needs to be built. Understand:
Also read CLAUDE.md at the repo root for project conventions (commit format, tooling, terminology, formatting rules). These must be embedded in the output prompt so every session follows them.
Write a markdown file to the same directory as the input file, named with a numeric prefix one higher than the input file (e.g., if input is 03-comparison.md, output is 04-continuation-prompt.md). If a continuation prompt already exists, overwrite it.
The output file MUST follow this exact structure:
# Continuation Prompt — {Project Name} (Iteration 1)
Continue {one-line description of the work}.
The iteration number gets incremented by the agent at the end of each session.
## Repository Layout
{tree of relevant directories with one-line descriptions}
Only paths the agent will read or write to. Include path aliases.
## What Was Accomplished in the Previous Session
{Initially empty or describes any existing work. Each session appends its accomplishments here.}
### Build status
{Build/lint/test pass/fail status}
This section is the running log. When an agent finishes a session, it moves completed items from "Remaining Work" into this section and updates the build status.
## Current Status
| Component | Status | Notes |
|-----------|--------|-------|
| {component} | **done** / **partial** / **not started** | {detail} |
One row per deliverable component. Agents update this table as work completes. Include an overall progress percentage at the bottom.
## Remaining Work (Prioritized)
### TIER 1 — {description} (blocks Tier 2)
{Concrete file list with exact paths, method signatures, endpoint specs, data shapes.}
### TIER 2 — {description} (depends on Tier 1)
{Same level of specificity.}
### TIER 3 — {description}
...
Critical rules for this section:
apps/server/src/widget/widget.service.ts"getConfig(accountId: string): Promise<WidgetConfig>"## Strategy for This Session
1. {Numbered step — what to do first and why}
2. {Next step — what can run in parallel}
3. {Verification step — build/lint/test commands}
After completing work, **update this file**: move completed items to "What Was Accomplished", update the status table, increment the iteration number, and adjust this strategy section for the next session.
The self-update instruction is mandatory. It's what makes the loop work.
## Key Architecture Reminders
- {Bullet list of conventions, patterns, and gotchas that every session needs}
Pull from CLAUDE.md and the input doc. Include:
Before writing the file, verify:
apps/server/src/widget/widget.service.ts)Write the continuation prompt file using the Write tool. Report the file path and a one-line summary when done.