Skip to main content

skillstate-kit

A portable, validated execution-state layer for long-running AI agents.

Maintain task progress, observations, artifacts and operation state outside conversational history. Use your existing coding agent through CLI/MCP and project integrations, or embed the same canonical engine in Python. Semantic generation from existing skills remains supported. No custom Python agent is required for host integration.

Python 3.11+ · MIT license · Alpha

Install

python -m pip install "skillstate-kit[mcp]"
skillstate init
skillstate doctor --mcp

Run setup in your project. Host detection installs the applicable project lifecycle and generator skills; unrelated instructions/configuration are preserved. After reloading discovery, use your agent normally. The integration guides it to inspect compatible runs, preserve completed work, record evidence and validate completion.

The base package also supports pip install skillstate-kit and skillstate init through CLI instructions. MCP is optional. The core requires no model account; your host supplies its model. skillstate demo is an explicitly scripted offline example.

Optional extras:

  • mcp: a project-scoped STDIO MCP server and connection diagnostics.
  • http: a stateless adapter for a configured JSON-compatible chat-completions endpoint.

Task lifecycle

The optional task profile provides task_start, task_checkpoint and task_complete over CLI/MCP. Milestones reference artifacts, completion time and resource fingerprints; repeated milestones require an explicit revalidation reason. Completion validates required steps, evidence integrity, blockers and freshness. Agent-reported evidence does not independently prove business truth. Existing semantic state schemas and run APIs remain supported.

skillstate hosts detect lists discovery evidence. skillstate init --host codex --mcp or --host claude-code --mcp selects a project integration. skillstate doctor codex checks that integration. skillstate disconnect codex reverses its owned setup while retaining state.

Execution-state optimization does not remove a host's native transcript. Token, latency and cost improvements must be measured independently; smaller application context is not proof of provider savings.

A real paired Codex coding trial passed 29 independent checks in both modes and preserved the integrated run across four fresh sessions. It used more tokens and wall time with SkillState on that small task. See the measurement report.

Use an existing skill

Run these commands in your target project. Replace skills/qa/SKILL.md with your existing skill file:

skillstate init --host codex --host claude-code --host antigravity --mcp
skillstate generate skills/qa/SKILL.md --name qa-state --install
skillstate validate qa-state
skillstate doctor --mcp

After your host discovers the installed generate-skill-state skill, ask it to generate state from an existing skill and install the result. Invoke the generated qa-state skill to run the procedure with checkpoints. Generating a definition does not execute the task.

generate preserves the source procedure and adds bounded progress fields. Domain-specific generation uses the active agent's proposal:

skillstate generate skills/qa/SKILL.md --prepare
skillstate generate skills/qa/SKILL.md --proposal proposal.json --source-hash HASH_FROM_PREPARE --install

The preparation response contains source text, its fingerprint and the proposal schema. The agent writes proposal.json; the library validates it and refuses stale source fingerprints. Structural validation is not proof that every business rule is correct.

You can also supply an explicitly configured endpoint with --base-url and --model. Terminal commands do not borrow your IDE's model credentials.

Claude Desktop Chat

Version 0.1.2 adds an explicit local connection, separate from Claude Code:

skillstate connect claude-desktop
skillstate doctor --mcp

Fully quit and reopen Claude Desktop, use Chat, and approve the tool calls you intend to allow. The installer preserves unrelated settings and uses a separate server name per project. Windows standalone/Microsoft Store and macOS paths are supported; --config PATH selects a custom location. If two Windows configs exist, choose explicitly. Disconnect with skillstate disconnect claude-desktop; run data remains intact.

Live acceptance evidence: Codex used eight real MCP calls to record a synthetic invoice review and hand it to Claude Desktop. After an initial permission/timeout interruption, Desktop resumed the same run, saved a second-review artifact and completed at revision 4. A separate process verified the stored state, both artifacts and the event history. This representative Codex-to-Claude Desktop Chat success does not establish universal desktop compatibility.

Python integration

This complete example uses a scripted model. Replace model and record with your own model and service functions:

import asyncio
from skillstate import Skill, SkillRuntime, SQLiteStore, Tool, ToolResult

skill = Skill(
    name="record-job",
    instructions="Record the job, then finish after its result is confirmed.",
    state_schema={
        "type": "object",
        "properties": {"recorded": {"type": "boolean"}},
        "required": ["recorded"],
        "additionalProperties": False,
    },
    initial_state={"recorded": False},
)

def model(context):
    if context["state"]["recorded"]:
        return {"patch": [], "action": None, "done": True}
    return {
        "patch": [{"op": "set", "path": "/recorded", "value": True}],
        "action": {"name": "record", "arguments": {}},
        "done": False,
    }

def record(arguments, operation_id):
    # For a real API, forward operation_id to its idempotency facility when
    # supported and inspect the actual response before reporting success.
    return ToolResult(True, {"recorded": True})

async def main():
    with SQLiteStore() as store:  # Pass a local file path for durable storage.
        store.create("job-001", skill, "worker")
        tool = Tool("record", "Record a job",
                    {"type": "object", "additionalProperties": False}, record)
        runtime = SkillRuntime(store, model, [tool],
                               completion_check=lambda state: state["recorded"])
        result = await runtime.run("job-001", "worker", max_steps=10)
        print(result["status"], result["state"])

asyncio.run(main())

For persistent storage, pass a database path to SQLiteStore. Reopen the same database and run ID to resume; creating a duplicate run is rejected.

Execution contract

  • Explicit set/delete patches with JSON Pointer paths, inline JSON Schema and UTF-8 size limits.
  • State and tool arguments validated before a managed tool executes.
  • Persistent operation intent before tool execution; atomic state, result and event commit afterward.
  • Failed tools retain the prior state. Exceptions, timeouts and ambiguous results block replay until reconciliation.
  • Revision checks prevent competing clients from silently overwriting each other.
  • Immutable skill definitions, source drift detection and sequential owner handoff.
  • Large text artifacts kept outside the active context.

Native host skills provide state and checkpoints. They do not replace host conversation history or intercept every native tool. Use the managed Python runtime with a stateless model for history-free model inputs.

SQLite does not make external APIs transactional. Owner names coordinate local clients; they are not authentication. The library validates reported results but cannot independently prove external business truth. Keep local state private and test recovery behavior for your application.

Compatibility and documentation

Adapters generate project skill files and optional MCP configuration for Codex, Claude Code and Antigravity. They target documented integration surfaces. MCP protocol tests and configuration discovery do not certify every IDE version or live task.

The source distribution includes docs/cli.md, docs/architecture.md, docs/compatibility.md, docs/validation.md, docs/README_TR.md and runnable examples. Download the source archive from this package's files to read them offline. The development repository currently requires collaborator access.

Research

An independent implementation inspired by SKILL.state: Scalable Long-Horizon Agent Skills. Not affiliated with the paper's authors. The compiler, host adapters and operation journal are engineering extensions; no reproduction of the paper's benchmark scores or token savings is claimed.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

skillstate_kit-0.2.0.tar.gz (230.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

skillstate_kit-0.2.0-py3-none-any.whl (49.2 kB view details)

Uploaded Python 3

File details

Details for the file skillstate_kit-0.2.0.tar.gz.

File metadata

  • Download URL: skillstate_kit-0.2.0.tar.gz
  • Upload date:
  • Size: 230.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for skillstate_kit-0.2.0.tar.gz
Algorithm Hash digest
SHA256 f5e32bf9d505acd9623ce3c5dbf31194d4a729526eba8c7b4a7e9164c4721ea3
MD5 e910dc9123002324de793d9b0df07c6e
BLAKE2b-256 41d84b0af74c5cf4ee4abece877f76bf301767f043c7966373d318d04e9c5b9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for skillstate_kit-0.2.0.tar.gz:

Publisher: publish.yml on Atakan-Emre/skillstate-kit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file skillstate_kit-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: skillstate_kit-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 49.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for skillstate_kit-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 faed969a1969361fc17c06e9f011cb95a96ebc833114f002bfd54b7f2e61c1a9
MD5 671482f119e4b73bde2d51451ed6013f
BLAKE2b-256 91ea133814599faf2c2eb3971a879d99cc62921693711807f8a83c54bfd490da

See more details on using hashes here.

Provenance

The following attestation bundles were made for skillstate_kit-0.2.0-py3-none-any.whl:

Publisher: publish.yml on Atakan-Emre/skillstate-kit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.2.2

2 files

0.2.1

2 files

This release

0.2.0 This release

2 files

0.1.2

2 files

0.1.1

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page