skills/productionos-pause/SKILL.md
Save current pipeline state for later resumption. Creates a checkpoint at .productionos/CHECKPOINT.json with all active context.
npx skillsauth add ShaheerKhawaja/ProductionOS productionos-pauseInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Save current pipeline state for later resumption. Creates a checkpoint at .productionos/CHECKPOINT.json with all active context.
| Parameter | Values | Default | Description |
|-----------|--------|---------|-------------|
| target | path or context | cwd | What to operate on |
Save the current pipeline state so work can be resumed in a new session.
Write .productionos/CHECKPOINT.json:
{
"command": "<active command name>",
"step": "<current step number and name>",
"iteration": "<current iteration if recursive>",
"timestamp": "<ISO 8601>",
"grade": {
"before": "<BEFORE grade if available>",
"current": "<latest grade>"
},
"artifacts": ["<list of .productionos/*.md files that exist>"],
"uncommitted_files": ["<output of git diff --name-only>"],
"pending_batches": "<number of unexecuted batches if mid-execution>",
"context_notes": "<brief description of what was happening>"
}
Detect the active pipeline state:
.productionos/CONVERGENCE-LOG.md for iteration history.productionos/CONVERGENCE-DATA.json for current scoresgit status for uncommitted workOMNI-PLAN.md or UPGRADE-PLAN.mdWrite the checkpoint file
Display confirmation:
[ProductionOS] Pipeline paused.
Command: {command}
Step: {step}
Grade: {current_grade}
Uncommitted: {N} files
Resume with: /productionos-resume
| Scenario | Action | |----------|--------| | No target provided | Ask for clarification with examples | | Target not found | Search for alternatives, suggest closest match | | Missing dependencies | Report what is needed and how to install | | Permission denied | Check file permissions, suggest fix | | State file corrupted | Reset to defaults, report what was lost |
tools
Implementation planning workflow that turns approved ideas into dependency-aware execution plans.
development
Local RAG and Graph RAG over the SecondBrain wiki vault. Progressive context loading (hot cache -> index -> domain -> entity). Graph traversal via wikilink resolution. Use when agents need cross-project context, when answering questions that span multiple domains, or when building context for planning tasks. Triggers on: "wiki context", "cross-project context", "what do we know about", "check the wiki", "graph context", "/wiki-rag".
devops
UX improvement pipeline — creates user stories from UI guidelines, maps user journeys, identifies friction, dispatches fix agents. The user-experience equivalent of /production-upgrade.
development
Test-driven development workflow that writes failing tests first, implements minimally, and refactors safely.