AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified Apache-2.0 Self-run

Work

skill-mdproctor-cc-praxis-work · by mdproctor

>

— No reviews yet
0 installs
33 views
0.0% view→install

Install

$ agentstack add skill-mdproctor-cc-praxis-work

✓ 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 Used
  • ✓ 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-mdproctor-cc-praxis-work)

Reliability & compatibility

✓ Security review passed
0 installs to date
— no reviews yet
○ Archived

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Work? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

work

Unified entry point for the work lifecycle. Detects state and routes to the correct skill — developer says work to begin, work end to close, work pause to save and switch, work resume to return to paused work.


Routing

Step 1 — Parse the invocation

| Invocation | Route to | |------------|---------| | work or work start | → detect state (Step 2) | | work end | → work-end immediately | | work pause | → work-pause immediately | | work resume | → work-resume immediately |

Step 2 — Detect state (for work alone)

python3 ~/.claude/skills/project-init/ctx.py

Read WORKSPACE and CURRENT_BRANCH from the output, then check pause stack state:

STACK_FILE="$WORKSPACE/design/.pause-stack"
STACK_DEPTH=$(grep -c "^- branch:" "$STACK_FILE" 2>/dev/null || echo 0)
IS_MAIN=$([ "$CURRENT_BRANCH" = "main" ] && echo "yes" || echo "no")

| Detected state | Action | |---------------|--------| | On main, stack empty | → work-start — begin new work | | On main, stack has 1+ entries | → show stack picker (Step 3) | | On a feature branch | → ask: end or pause? (Step 4) |

Step 3 — Stack picker (on main, 1+ paused branches)

Show paused branches with age and note. Adapt phrasing to stack depth:

You have  paused branch(es):
  1.   #  paused  ago
  2.   #  paused  ago   (if N > 1)
  ...

Resume one, or start something new? (1 / 2 / ... / new)
  • Number → work-resume with that branch pre-selected
  • new → work-start

If stack depth > 3, prefix with: ⚠️ Stack has paused branches — consider closing some before adding more.

Step 4 — On feature branch: ask once

> "You're on ``. What do you want to do? > 1. end — close this branch, merge, push, write handover, return to main > 2. pause — commit WIP, push to stack, switch to main (resume later) > 3. wrap — end session but keep branch open (write handover for next session)"

Route to work-end, work-pause, or handover based on answer.


Skill Chaining

Routes to:

  • work-start — when beginning new work from main
  • work-resume — when returning to a paused branch from main
  • work-end — when closing a completed branch (includes full wrap + HANDOFF.md)
  • work-pause — when saving state to switch to something else
  • handover — when ending the session but keeping the branch open (mid-work wrap)

This skill does not implement the lifecycle itself — it detects state and delegates. All logic lives in the individual lifecycle skills.

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.