← Back to Skills Marketplace
xiao1804

Intent Framed Agent

by Xiao1804 · GitHub ↗ · v1.0.0
cross-platform ✓ Security Clean
278
Downloads
0
Stars
4
Active Installs
1
Versions
Install in OpenClaw
/install intent-framed-agent
Description
Frames coding-agent work sessions with explicit intent capture and drift monitoring. Use when a session transitions from planning/Q&A to implementation for c...
README (SKILL.md)

Intent Framed Agent

Install

npx skills add pskoett/pskoett-ai-skills
npx skills add pskoett/pskoett-ai-skills/intent-framed-agent

Purpose

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.

Scope (Important)

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:

  • broad research
  • planning-only conversations
  • documentation-only work
  • operational/admin tasks with no coding implementation

For trivial edits (for example, simple renames or typo fixes), skip the full intent frame.

Trigger

Activate at the planning-to-execution transition for non-trivial coding work.

Common cues:

  • User says: "go ahead", "implement this", "let's start building"
  • Agent is about to move from discussion into code changes

Workflow

Phase 1: Intent Capture

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:

  • Keep each field to 1-2 sentences.
  • Ask for confirmation before coding:
    • Does this capture what we are doing? Anything to adjust before I start?
  • Do not proceed until the user confirms or adjusts.

Phase 2: Intent Monitor

During execution, monitor for drift at natural boundaries:

  • before touching a new area/file
  • before starting a new logical work unit
  • when current action feels tangential

Drift examples:

  • work outside stated scope
  • approach changes with no explicit pivot
  • new features/refactors outside constraints
  • solving a different problem than the stated outcome

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.

Phase 3: Intent Resolution

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.

Multi-Intent Sessions

One session can contain multiple intent frames.

Rules:

  1. Resolve current intent before opening the next.
  2. If user changes direction mid-task, resolve current intent as Abandoned or Pivoted, then open a new frame.
  3. Drift checks always target the currently active frame.
  4. Number frames sequentially within the session (#1, #2, ...).
  5. Constraints do not carry forward unless explicitly restated.

Entire CLI Integration

Entire CLI: https://github.com/entireio/cli

When tool access is available, detect Entire at activation:

entire status 2>/dev/null
  • If it succeeds, mention that intent records will be captured in the session transcript on the checkpoint branch.
  • If unavailable/failing, continue silently. Do not block execution and do not nag about installation.

Copilot/chat fallback:

  • If command execution is unavailable, skip detection and continue with the same intent workflow in chat output.

Guardrails

  • Keep it lightweight; avoid long prose.
  • Do not over-trigger on trivial tasks.
  • Do not interrupt on every small step.
  • Treat acknowledged pivots as valid.
  • Preserve exact structured block headers/fields for parseability.

Interoperability with Other Skills

Use this skill as the front-door alignment layer for non-trivial coding work:

  1. plan-interview (optional, for requirement shaping)
  2. intent-framed-agent (execution contract + drift monitoring)
  3. Implementation
  4. simplify-and-harden (post-completion quality/security pass)
  5. self-improvement (capture recurring patterns and promote durable rules)

This ordering helps reduce scope drift early and improve repeatability across tasks.

Usage Guidance
This skill is an instruction-only helper for capturing and monitoring coding intent and appears coherent. Before installing or running any suggested setup commands: (1) be cautious about running the example 'npx skills add pskoett/...' — that would download code from external sources; inspect the package/repo first. (2) If you allow the agent to run shell commands, note it may run 'entire status' to detect an optional CLI; if Entire is present, intent records may be written into your repo/checkpoint branch. No credentials are requested by the skill itself. If you need stricter isolation, avoid running the optional npx/install commands or block command execution for the agent.
Capability Analysis
Type: OpenClaw Skill Name: intent-framed-agent Version: 1.0.0 The skill is a workflow management framework designed to help AI agents maintain focus and track progress during coding tasks through 'intent framing'. It uses structured Markdown templates to define goals, monitor for scope drift, and record resolutions. The only command execution is a benign status check for a legitimate developer tool (entire status 2>/dev/null), and the instructions prioritize user confirmation before proceeding with implementation.
Capability Assessment
Purpose & Capability
The name/description (intent framing and drift monitoring for coding work) matches the SKILL.md content. The skill only prescribes producing structured intent artifacts and monitoring drift; it does not request unrelated access or credentials.
Instruction Scope
Runtime instructions are narrowly focused on creating intent frames, checking for drift, and resolving intents. The only external command referenced is a harmless detection call to the 'entire' CLI (entire status) to detect optional integration; there are no directives to read unrelated files, exfiltrate data, or access environment variables.
Install Mechanism
There is no formal install spec in the registry (instruction-only), which is low risk. The SKILL.md includes optional 'npx skills add pskoett/...' example commands — running those would fetch code from an external source (npm/GitHub) and therefore should be audited by the user before execution. The skill itself does not force any download.
Credentials
No environment variables, credentials, or config paths are required. The optional integration with the Entire CLI is proportional to the described purpose (storing intent records in session transcripts/checkpoints) and is only used if the tool is present.
Persistence & Privilege
The skill is not always-enabled and does not request elevated persistence or modify other skills. It may write intent records via the Entire CLI if that tool is available (which implies writing to a repository/checkpoint branch) — this behavior is documented and conditional on the tool being present.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install intent-framed-agent
  3. After installation, invoke the skill by name or use /intent-framed-agent
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
- Initial release of intent-framed-agent. - Frames coding sessions with explicit intent capture, drift monitoring, and resolution. - Designed for coding implementation tasks to prevent scope drift. - Structured workflow: Intent Frame, Drift Monitor, and Intent Resolution phases. - Integrates with Entire CLI if available, with silent fallback. - Clear guidance on when to trigger, scope, and interoperability with other skills.
Metadata
Slug intent-framed-agent
Version 1.0.0
License
All-time Installs 4
Active Installs 4
Total Versions 1
Frequently Asked Questions

What is Intent Framed Agent?

Frames coding-agent work sessions with explicit intent capture and drift monitoring. Use when a session transitions from planning/Q&A to implementation for c... It is an AI Agent Skill for Claude Code / OpenClaw, with 278 downloads so far.

How do I install Intent Framed Agent?

Run "/install intent-framed-agent" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Intent Framed Agent free?

Yes, Intent Framed Agent is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Intent Framed Agent support?

Intent Framed Agent is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Intent Framed Agent?

It is built and maintained by Xiao1804 (@xiao1804); the current version is v1.0.0.

💬 Comments