Skip to main content

Skiller.run agentic workflows.

Project description

Skiller.run

A runtime for agentic workflows.

Skiller runs agentic flows as durable executions with persistent state, safe resume, and full observability logs.

What It Does

  • Runs durable YAML flows that can include agents
  • Pauses and resumes flows from persisted waiting states
  • Provides CLI to observe and manage persisted runs
  • Includes a TUI for chatting with agents, launching flows, and managing runs
name: mono
description: "Terminal agent chat with shell and file access"
version: "0.1"
start: ask_user

inputs: {}

steps:
  - wait_input: ask_user
    prompt: "Write a task or message. Type exit, quit, or bye to stop."
    next: decide_exit

  - switch: decide_exit
    value: '{{output_value("ask_user").payload.text}}'
    cases:
      exit: done
      quit: done
      bye: done
    default: mono_agent

  - agent: mono_agent
    system:
      file: "./system.md"
    task: '{{output_value("ask_user").payload.text}}'
    tools:
      - shell
      - files
    max_turns: 50
    next: ask_user

  - assign: done
    values:
      status: "closed"

Install

For regular CLI usage, install it with pipx:

pipx install skiller

STUI for chat and launch runs

Use skiller when you want an interactive terminal UI to chat, launch runs, and manage persisted runs.

skiller

Use CLI to run flows

Run a YAML flow definition:

skiller run --file <path>

Inspect and manage runs:

skiller status <run_id>
skiller logs <run_id>
skiller delete <run_id>

Flow Steps

Deterministic:

  • assign
  • notify
  • switch
  • when

Execution:

  • agent
  • shell

Waiting:

  • wait_input
  • wait_webhook

Persistence

Skiller persists:

  • run state
  • step outputs
  • runtime log events
  • waiting states
  • external event receipts
  • persisted output bodies

Waiting is persisted, not simulated in memory. A run can stop in WAITING and resume later from stored state.

How Mono Is Built

mono is a regular YAML-defined agent with local runtime configuration beside it. The flow is intentionally small:

  • wait for terminal input with wait_input
  • stop on exit, quit, or bye with switch
  • send every other message to an agent step
  • let that agent use its configured shell and files tools
  • loop back to wait_input

Minimal shape:

name: mono
start: ask_user

steps:
  - wait_input: ask_user
    next: decide_exit

  - switch: decide_exit
    default: support_agent

  - agent: support_agent
    tools:
      - shell
      - files
    next: ask_user

The full prompt and step definition live in packages/skiller/agents/mono/agent.yaml. The provider, loop limits, shell allowlist, and file roots live in packages/skiller/agents/mono/agent.json.

Project Layout

  • packages/skiller/src/skiller: runtime and CLI code
  • packages/skiller/agents/mono: bundled terminal agent
  • packages/skiller/docs: runtime and CLI documentation
  • packages/skiller/tests: runtime, CLI, and integration tests
  • apps/tui: Textual UI app

Documentation

Core guides:

Step references:

Development

Run the main checks:

./.venv/bin/python -m ruff check packages/skiller/src apps/tui/src packages/skiller/tests apps/tui/tests
./.venv/bin/python -m pytest packages/skiller/tests apps/tui/tests
./.venv/bin/python -m build --no-isolation

Manual CLI E2E flows live in packages/skiller/tests/e2e/cli_*.sh. Use them when you need to exercise the real CLI path without mixing those checks into the default pytest suite.

License

Apache-2.0. See LICENSE.

Disclaimer

This project is provided "as is", without warranties of any kind. The authors and contributors are not responsible for production incidents, data loss, service interruptions, security issues, regulatory non-compliance, third-party integration failures, or any direct or indirect damages resulting from its use.

Project details


Download files

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

Source Distribution

skiller-0.1.0b9.tar.gz (450.0 kB view details)

Uploaded Source

Built Distribution

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

skiller-0.1.0b9-py3-none-any.whl (347.1 kB view details)

Uploaded Python 3

File details

Details for the file skiller-0.1.0b9.tar.gz.

File metadata

  • Download URL: skiller-0.1.0b9.tar.gz
  • Upload date:
  • Size: 450.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for skiller-0.1.0b9.tar.gz
Algorithm Hash digest
SHA256 ccab0b5b8a959e9c48a9fed9bdb96be9be04b82aa3719c32de028e277b601b85
MD5 5ac9cd19c8d5152f0af2054fffc90a4f
BLAKE2b-256 ef39345225dd1bf1dda30c1cac3e628b90dafa8f318e6e94c31f7016b69c3cd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for skiller-0.1.0b9.tar.gz:

Publisher: publish.yml on fredycampino/skiller

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

File details

Details for the file skiller-0.1.0b9-py3-none-any.whl.

File metadata

  • Download URL: skiller-0.1.0b9-py3-none-any.whl
  • Upload date:
  • Size: 347.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for skiller-0.1.0b9-py3-none-any.whl
Algorithm Hash digest
SHA256 e0b8d2d167d2670c148b4414e7aa6ec56a185a28299cccd4b9b673cc049a0933
MD5 f5c454e8458ae4a76487100e88ef4387
BLAKE2b-256 02fb567707b5d9cf8d79beceaa4dc592c6caacc37e5192e699a0e7e75a9cb516

See more details on using hashes here.

Provenance

The following attestation bundles were made for skiller-0.1.0b9-py3-none-any.whl:

Publisher: publish.yml on fredycampino/skiller

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page