Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add magnus919/agent-skills --skill workflow-architectgit clone --depth 1 https://github.com/magnus919/agent-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/magnus919/agent-skills/workflow-architect)<a href="https://agentmods.dev/skills/magnus919/agent-skills/workflow-architect"><img src="https://agentmods.dev/badge/skills/magnus919/agent-skills/workflow-architect/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/magnus919/agent-skills/workflow-architect"><img src="https://agentmods.dev/badge/skills/magnus919/agent-skills/workflow-architect.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 7 findings, up to medium
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- medium Agent Snooping · line 94 Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
- medium Agent Snooping · line 133 Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
- medium Agent Snooping · line 95 Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
- medium Agent Snooping · line 133 Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
- medium Agent Snooping · line 96 Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
- medium Agent Snooping · line 133 Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
- medium Rogue Agent · line 97 Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00083 | $0.01722 |
| Opus 5 | $0.00042 | $0.00861 |
| Sonnet 5 | $0.00017 | $0.00344 |
| Haiku 4.5 | $0.00008 | $0.00172 |
Grade A, and why
workflow-architect scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 145 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Workflow Architect
A meta-skill that helps you (and your agent) understand how you actually work. It discovers your workflow patterns through either active interrogation or passive observation, then generates a skills bundle — a set of loadable skills, each with trigger conditions, that encode your workflow so your agent can meet you where you are in every session.
What You Get
After running workflow-architect, you'll have a new bundle in your agent's skill directory containing:
- Umbrella SKILL.md — the entry point that makes the bundle auto-detectable
via trigger conditions in its description. Load it with
skill_view(name='<bundle-name>')or let the agent discover it automatically when you say something matching its triggers. - Sub-skills — one per phase of your workflow, each with a
descriptionthat tells the agent when to load it (e.g., "load this when the user starts their morning triage routine" or "use this when the user shifts into deep work mode") - A manifest — maps skill names to their trigger conditions, entry points, and transition signals
- A decision map — Mermaid flowchart visualizing your workflow as the agent sees it
- A kanban board (optional) — only included if your workflow follows a predictable linear path where WIP limits and lane transitions add value
The umbrella and sub-skills are registered via skill_manage(action='create')
so they appear in skills_list() and are immediately loadable in future sessions.
Two Modes
Workflow-architect adapts to how you want to engage with it.
Mode 1: Active Interrogation (One-Shot)
When to use: You have a few minutes to talk through your process. This is the most thorough mode — the agent asks guided questions, branches based on your answers, and builds a model of your workflow turn by turn.
How to invoke:
/workflow-architect
The agent will guide you through a conversation of about 8-15 questions. Answer naturally — the skill adapts its probes based on what you say.
What ships with it
38 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- AGENTS.md 2.9 KB
- evals/evals.json 6.8 KB
- manifest.yaml 2.3 KB
- README.md 2.3 KB
- references/example-output/developer-pipeline-kanban/decision-map.md 308 B
- references/example-output/developer-pipeline-kanban/kanban/board-setup.sh 1.0 KB runs code
- references/example-output/developer-pipeline-kanban/kanban/README.md 1.6 KB
- references/example-output/developer-pipeline-kanban/kanban/task-blueprints.yaml 1.7 KB
- references/example-output/developer-pipeline-kanban/manifest.yaml 1.0 KB
- references/example-output/developer-pipeline-kanban/README.md 1.5 KB
- references/example-output/developer-pipeline-kanban/skills/build.md 1.5 KB
- references/example-output/developer-pipeline-kanban/skills/deploy.md 1.3 KB
- references/example-output/developer-pipeline-kanban/skills/review.md 1.5 KB
- references/example-output/developer-triage/decision-map.md 877 B
- references/example-output/developer-triage/manifest.yaml 1.6 KB
- references/example-output/developer-triage/README.md 2.7 KB
- references/example-output/developer-triage/references/generated-from.md 382 B
- references/example-output/developer-triage/skills/deep-work.md 2.1 KB
- references/example-output/developer-triage/skills/morning-triage.md 1.9 KB
- references/example-output/developer-triage/skills/pr-review.md 2.2 KB
- references/example-output/developer-triage/skills/session-wrap.md 2.1 KB
- references/kanban-decision-criteria.md 7.1 KB
- references/trigger-condition-patterns.md 5.8 KB
- references/workflow-archetypes.md 9.1 KB
- skills/bundle-builder/evals/evals.json 5.7 KB
- skills/bundle-builder/README.md 510 B
- skills/bundle-builder/SKILL.md 14 KB
- skills/interviewer/evals/evals.json 5.4 KB
- skills/interviewer/README.md 513 B
- skills/interviewer/SKILL.md 7.5 KB
- skills/observer/evals/evals.json 4.3 KB
- skills/observer/README.md 521 B
- skills/observer/SKILL.md 4.5 KB
- templates/decision-map.md.tmpl 725 B
- templates/kanban-board-setup.sh.tmpl 784 B
- templates/kanban-task-blueprints.yaml.tmpl 535 B
- templates/manifest.yaml.tmpl 152 B
- templates/skill-skeleton.md 610 B
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 5d ago First seen · 145 lines · 83 tokens per session scan A cfd14d189908
workflow-architect is a skill published in the GitHub repository magnus919/agent-skills (76 stars, last pushed today), licensed MIT. It adds 83 tokens to every session and 1,722 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-05.
Other skills, from other repositories
dws
A command-line guide for DingTalk, a workplace platform with chat, documents, calendars, approvals, tasks, and other business tools.
community-research-insight
Extract structured insight briefs from community research transcripts or notes. Produces pain points, stakeholder needs, opportunity maps, risks, and follow-up questions. Requires human review before publication.
cocoplus-off
Deactivate Full Assist Mode — removes all CocoPlus feature flags. Data files (memory, meter history, grove patterns) are preserved. Idempotent.
wisdom-forget
Remove a must-keep CocoWisdom entry with rationale. Usage: $wisdom forget --id --rationale " ".
cocoplus-console
Launch CocoConsole, the CocoPlus 2.0 read-only local browser control plane. Use $cocoplus console, $cocoplus console status, or $cocoplus console stop.
pulse-configure
Configure CocoPulse observation intervals and scopes.