From productionos
Save current pipeline state for later resumption. Creates a checkpoint at .productionos/CHECKPOINT.json with all active context.
npx claudepluginhub shaheerkhawaja/productionos --plugin productionosThis skill uses the workspace's default tool permissions.
Save current pipeline state for later resumption. Creates a checkpoint at .productionos/CHECKPOINT.json with all active context.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Guides agent creation for Claude Code plugins with file templates, frontmatter specs (name, description, model), triggering examples, system prompts, and best practices.
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 |