From pskoett-ai-skills
Frames coding-agent sessions with explicit intent capture, drift monitoring, and resolution records for implementation of refactors, features, bug fixes, and multi-step coding tasks.
How this skill is triggered — by the user, by Claude, or both
Slash command
/pskoett-ai-skills:intent-framed-agentThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill turns implicit intent into an explicit, trackable artifact at the
This skill turns implicit intent into an explicit, trackable artifact at the moment execution starts. It creates a lightweight intent contract, watches for scope drift while work is in progress, and closes each intent with a short resolution record.
Use this skill for coding tasks only. It is designed for implementation work that changes executable code.
Do not use it for general-agent activities such as:
For trivial edits (for example, simple renames or typo fixes), skip the full intent frame.
Activate at the planning-to-execution transition for non-trivial coding work.
Common cues:
At execution start, emit:
## Intent Frame #N
**Outcome:** [One sentence. What does done look like?]
**Approach:** [How we will implement it. Key decisions.]
**Constraints:** [Out-of-scope boundaries.]
**Success criteria:** [How we verify completion.]
**Estimated complexity:** [Small / Medium / Large]
Rules:
Does this capture what we are doing? Anything to adjust before I start?During execution, monitor for drift at natural boundaries:
Drift examples:
When detected, emit:
## Intent Check #N
This looks like it may be moving outside the stated intent.
**Stated outcome:** [From active frame]
**Current action:** [What is happening]
**Question:** Is this a deliberate pivot or accidental scope creep?
If pivot is intentional, update the active intent frame and continue. If not, return to the original scope.
When work under the active intent ends, emit:
## Intent Resolution #N
**Outcome:** [Fulfilled / Partially fulfilled / Pivoted / Abandoned]
**What was delivered:** [Brief actual output]
**Pivots:** [Any acknowledged changes, or None]
**Open items:** [Remaining in-scope items, or None]
Resolution is preferred but optional if the session ends abruptly.
One session can contain multiple intent frames.
Rules:
Abandoned or Pivoted, then open a new frame.#1, #2, ...).Entire CLI: https://github.com/entireio/cli
When tool access is available, detect Entire at activation:
entire status 2>/dev/null
Copilot/chat fallback:
Use this skill as the front-door alignment layer for non-trivial coding work:
plan-interview (optional, for requirement shaping)intent-framed-agent (execution contract + scope drift monitoring)context-surfing (context quality monitoring — runs concurrently with intent-framed-agent during execution)simplify-and-harden (post-completion quality/security pass)self-improvement (capture recurring patterns and promote durable rules)Both skills are live during execution. They monitor different failure modes:
They are complementary, not redundant. An agent can be perfectly on-scope while its context quality degrades. Conversely, scope drift can happen with perfect context quality. Intent Checks continue firing alongside context-surfing's wave monitoring.
Precedence rule: If both skills fire simultaneously (an Intent Check and a context-surfing drift exit at the same time), the drift exit takes precedence. Degraded context makes scope checks unreliable — resolve the context issue first, then resume scope monitoring in the next session.
npx claudepluginhub pskoett/pskoett-ai-skillsMonitors context window health during multi-step agent tasks to ride peak quality for high-fidelity output and prevent drift in long-running sessions or complex refactors.
Creates a persistent intent contract to capture user goals, success criteria, and boundaries upfront, then validates outputs against them to prevent scope drift. Activates for major workflows like planning, discovery, and review.
Silently tracks tasks in Claude Code sessions as a kanban board, auto-creating from actionable prompts, managing status/context/agents with deduplication and reviews.