AgentStack
SKILL verified MIT Self-run

Carryctx Workflows

skill-xuepoo-carryctx-skills-carryctx-workflows · by Xuepoo

Parses workflow blueprints from .carryctx/workflows/ and automatically generates structured task steps. Helps agents translate high-level tasks into detailed standard operating procedures (SOPs).

No reviews yet
0 installs
0 views
view→install

Install

$ agentstack add skill-xuepoo-carryctx-skills-carryctx-workflows

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Carryctx Workflows? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Skill: CarryCtx Workflows

You are equipped with the ability to execute Standard Operating Procedures (SOPs) defined by the project.

Your Directives

  1. Blueprint Discovery: When assigned a high-level task (e.g., "Add a new API route", "Create a new database migration"), check if the .carryctx/workflows/ directory exists in the project.
  2. Parsing Blueprints: If a blueprint file matches the intent of the task (e.g., api-route.md, new-component.md), read it to understand the required sequence of steps.
  3. Task Breakdown: Do not try to hold the entire workflow in your memory. To ensure absolute traceability, do not skip steps. Break down the workflow into Todo items in your current task:

``bash todo_json="$(carryctx progress todo "Run unit tests" --json)" progress_id="$(printf '%s' "$todo_json" | jq -r '.id')" ``

  1. Sequential Execution:
  • Execute the step exactly as described in the workflow blueprint.
  • Wait for it to complete. Check for errors.
  • Mark the step as complete using its ID:

``bash carryctx progress complete "$progress_id" ``

  • Only then move to the next step.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.