AgentStack
SKILL verified MIT Self-run

Agent Readiness

skill-jkheadley-instar-agent-readiness · by JKHeadley

Score a task or workflow on its coordination-vs-judgment ratio to tell whether it's a good agent candidate (EXO 3.0 task-decomposition matrix).

No reviews yet
0 installs
12 views
0.0% view→install

Install

$ agentstack add skill-jkheadley-instar-agent-readiness

✓ 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 Used
  • 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 Agent Readiness? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

/agent-readiness

Salim Ismail's EXO 3.0 diagnostic, made runnable: score a piece of work on its coordination-vs-judgment ratio. Coordination work — routing information, approvals, scheduling, status tracking, prescriptive/standardized steps — is what AI agents do best, so it's agent-ready. Judgment work — resolving ambiguity, handling exceptions, navigating relationships, making a call with no playbook — should stay with (or escalate to) humans.

When to use

  • Before delegating a task/workflow to an agent — is it actually a good candidate?
  • When deciding whether a process should be fully automated, agent-with-oversight,

hybrid, or kept human-led.

  • When mapping which of your workflows a small team + agents could rebuild first

(Salim: "every task that scores high on coordination has agent readiness").

How

Score a task:

curl -X POST -H "Authorization: Bearer $AUTH" -H 'Content-Type: application/json' \
  -d '{"task":{"name":"Invoice intake","description":"Route invoices, schedule approvals, track status, compile a weekly report, notify owners."}}' \
  http://localhost:${INSTAR_PORT:-4042}/agent-readiness/score

Score a workflow (by its steps):

curl -X POST -H "Authorization: Bearer $AUTH" -H 'Content-Type: application/json' \
  -d '{"workflow":{"steps":["Fetch the record","Assign accounts","Schedule orientation","Update the tracker"]}}' \
  http://localhost:${INSTAR_PORT:-4042}/agent-readiness/score

Returns:

{
  "coordinationSignals": 5, "judgmentSignals": 0,
  "coordinationRatio": 1.0, "overallReadiness": 100,
  "recommendation": "deploy-agent",
  "reason": "...",
  "matched": { "coordination": ["route","schedule",...], "judgment": [] }
}

recommendation is one of: deploy-agent (75+), agent-with-oversight (55–74), hybrid (40–54), human-led (<40). Deterministic + advisory — it answers a question; it never blocks. Pair it with the MTP Protocol (/intent/org/test-action) to check both "is this agent-ready?" and "does our purpose endorse it?"

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.