Install
$ agentstack add skill-magnus919-agent-skills-observer ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
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 →About
Observer — Passive Workflow Discovery
This is the passive observation mode of workflow-architect. Unlike the interviewer, which asks questions, the observer watches and infers.
How It Works
- The observer loads silently via
/workflow-architect passive - It does nothing until a trigger phrase is detected
- On trigger, it scans the current session's message history using a
structured inference prompt
- The output is a workflow state model (same structure as the interviewer
produces), which feeds into the bundle-builder sub-skill
Trigger Phrases
The observer activates when the user says any of these:
- "catalog my workflow"
- "what's my workflow"
- "analyze my process"
- "figure out what I do"
- "work it out from what I just did"
If none of these are detected in the user's message, the observer remains dormant. Do not announce its presence — the user may not remember loading it in passive mode.
Activation Protocol
When a trigger phrase is detected:
- Check session depth. Count substantive user messages (excluding
greetings, meta-comments about the agent, and one-word replies). If fewer than 5 substantive messages, respond:
`` "I don't have enough session context to work with yet. I've seen about [N] substantive turns, and I need more to find reliable patterns. Try active interrogation mode instead: /workflow-architect" ``
- If enough context exists, run inference. Use the following structured
prompt against the session context. You may use session_search or browser console to review the session transcript if needed.
``` You are analyzing a session transcript to extract workflow patterns. Look at the user's messages and your responses. Identify:
- ENTRY PATTERNS — How did the session start? What was the user's
first request? Was it a check-in, a specific task, a question?
- PHASES — Where did the session shift focus? What triggered each
shift? (A new request, a status check, a tool output?)
- BRANCHING — Were there decision points where the user could have
gone in different directions? What determined the direction taken?
- TOOLS — What tools did the user reach for? What commands did they
ask you to run? What contexts did they reference?
- PAIN POINTS — Were there moments of friction? (Repeated corrections,
stops-and-restarts, "no, not that" type corrections)
- EXIT — How did the session end (or approach ending)? Was it a
natural completion, an interruption, or something else?
Return your findings as a structured JSON document matching the workflow-architect state model format. ```
- If the session context is available via session_search, also pull
the 2-3 most recent related sessions for cross-session pattern detection. A single session may not reveal the full workflow; multiple sessions do.
- Present findings to the user:
``` "I looked through this session (and [N] recent related sessions) and found some patterns in how you work:
[Summary of inferred workflow, similar to interviewer's convergence summary]
Does this look right? If yes, I'll generate a bundle. If not, tell me what I got wrong — or switch to active mode for a more thorough conversation." ```
- If the user confirms, load
skills/bundle-builder/SKILL.mdand follow
its instructions to generate the output bundle.
Limitations
- Single-session bias: One session may not represent your full workflow.
The observer does its best work with multiple sessions of context.
- Action-inference gap: The observer only sees what happened, not
what you intended or considered and rejected. Active interrogation captures richer intentional data.
- Silent mode: The observer does not announce itself when loading.
This is intentional — passive mode is meant to be invisible until triggered.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: magnus919
- Source: magnus919/agent-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.