Skip to main content

GL Skill

gl-skill is a standalone Python library for loading one local Skill and running one bounded model/tool loop. Clients start a run through run() and consume ordered events plus one terminal result; they do not resume unfinished tool turns.

An application (for example, AIP) initiates every run. GL Skill composes its Loader and Executor, while Tool Runtime is the dispatch authority for admitted capabilities. Built-in workspace operations flow through SkillWorkspaceRuntime into gl-sandbox; caller tools are separately registered host implementations. GL Skill never asks AIP to continue an unfinished tool turn.

Quick start

After installing gl-skill and setting OPENAI_API_KEY, an instruction-only local Skill needs only its directory and a query. The default capability allowlist is empty, so this path does not create a workspace:

import asyncio

from gl_skill import GLSkill, SkillRunResult


async def main() -> None:
    result = None
    async for item in GLSkill.run(skill="./skills/hello", query="Say hello."):
        if isinstance(item, SkillRunResult):
            if not item.succeeded:
                detail = item.error.message if item.error is not None else f"status={item.status.value}"
                raise RuntimeError(f"GL Skill run failed: {detail}")
            result = item
    assert result is not None
    print(result.output_text)


if __name__ == "__main__":
    asyncio.run(main())

This normal-file example requires an existing ./skills/hello/SKILL.md. From libs/gl-skill, run the live default-model path after explicitly supplying its process-level credential prerequisite:

# Set OPENAI_API_KEY in this process through your credential manager first.
uv run python examples/hello_world.py

This command makes a paid provider request through the configured default model route. GL Skill does not read .env; the key must already be in the process environment. The deterministic convergence test exercises this same facade and asserts the printed greeting without making a network request.

GLSkill.run() streams the same ordered lifecycle. Advanced callers can import GLSkillClient, PublicRunRequest, and PublicDependencies to inject a provider-neutral model runtime, caller capabilities, event sink, or sandbox backend explicitly. The facade never searches for .env files; the default model path reads only the process-level OPENAI_API_KEY value.

For migration details and the typed stream contract, see docs/migration-run-only.md.

This repository provides the independently installable provider-neutral Loader and Executor from roadmap #6138. Architecture contracts live in contracts/, with design material under docs/architecture/.

Install

The package includes the supported GLLM inference runtime, jsonschema>=4.26 for Executor schema validation, and pyyaml>=6,<7 for the metadata seam. It does not require credentials, .env, AIP, GL Connectors, Hermes, gl-sandbox, or workspace backends:

uv pip install dist/gl_skill-*.whl
python -c "import gl_skill"

The executor's default workspace policy is schema-complete: 100 files, 10,000,000 total bytes, 1,000,000 bytes per file, 20-second command timeout, 100,000 command-output bytes, no environment variables, and network access disabled. Unknown or malformed policy fields fail closed; network capabilities are not admitted by the MVP, and sandbox-required capabilities must be validated built-in workspace capabilities. The default install includes the public binary distribution for the GL SDK model runtime. Until this package is published, install the built wheel and its runtime dependency first:

uv pip install 'gllm-inference-binary[openai]>=0.6.130,<0.6.137' dist/gl_skill-*.whl

The runtime's import surface remains gllm_inference. Imports stay lazy for callers that inject a custom ModelRuntimeProtocol, but the supported default dependency is installed with gl-skill. The binary runtime currently publishes wheels for CPython 3.11–3.13 on Linux manylinux_2_31_x86_64, Windows win_amd64, and macOS macosx_13_0_arm64. Support follows the selected GLLM binary release; other platforms cannot use the default install until a compatible distribution is published or the package is split into a provider-neutral core.

Release validation records the resolved dependency graph and installed footprint for each runtime pin; this is intentionally not a fixed value in the user guide.

Inputs and configuration

GL Skill reads no .env file implicitly and performs no environment discovery beyond the documented default-model path. Compose these inputs explicitly:

  • Skill source: an absolute local file:///<skills-root> URI plus a containment-safe single directory-component skill_ref. The referenced directory must contain a regular SKILL.md.
  • Request: caller identity, correlation ID, query, stable allowed capability IDs, model ID, run limits, and workspace policy.
  • Dependencies: a Skill provider, an optional custom model runtime, an optional SandboxBackend, registered caller tools, and an optional event sink. If no model is injected, OPENAI_API_KEY must already be present in the process environment and the installed GLLM runtime supplies the default.
  • Workspace: an explicit backend object is required before built-in workspace.* capabilities can be admitted. There is no automatic sandbox selection or credential discovery.

Advanced explicit composition

This first example creates one temporary local Skill and runs it with a scripted model. It has no network access and requires only the core development environment:

cd libs/gl-skill
make setup
uv run python examples/quickstart_run.py

Expected terminal summary:

status=succeeded output='The note was saved.'

The complete deterministic source is examples/quickstart_run.py. The installed-wheel convergence gate executes that canonical file on Linux and Windows. Replace its scripted model with a real model adapter when your application owns that dependency.

A successful result contains one authoritative terminal status, final text, typed receipts, evidence, and usage. Its wire shape is frozen by gl_skill/contracts/schemas/skill-run-result.schema.json; examples live beside it in contracts/examples/.

Streaming

Use client.run(request) when the initiating application wants ordered progress. When consumed to completion, it yields events and then exactly one SkillRunResult:

from gl_skill import SkillRunResult

async for item in client.run(request):
    if isinstance(item, SkillRunResult):
        print(f"result={item.status.value}")
    else:
        print(f"event={item.type} sequence={item.sequence} terminal={item.terminal}")

Closing the stream early ends observation and runs bounded cleanup, but does not deliver a normalized cancelled terminal item to the detached consumer. Use contextlib.aclosing() (or explicitly await stream.aclose()) when breaking early so cleanup is prompt:

from contextlib import aclosing

from gl_skill import SkillRunResult

async with aclosing(client.run(request)) as stream:
    async for item in stream:
        if should_stop_observing(item):
            break
        if isinstance(item, SkillRunResult):
            print(item.status.value)

Cancelling the consumer task instead runs cleanup and propagates asyncio.CancelledError, with no terminal-delivery guarantee. To receive a cancelled terminal event and SkillRunResult, pass an asyncio.Event as cancellation_token to GLSkillClient.run() and remain attached through the final item.

The runnable version also uses the same temporary Skill and scripted model:

uv run python examples/streaming_run.py

Tools, resources, policy, and events

Stable capability IDs and model-visible names

Admission uses stable versioned IDs such as workspace.read@1 and caller.echo@1. Model-visible names such as workspace_read and caller_echo exist only in schemas projected to the model. Do not persist model-visible names as authorization identities.

Caller tools

Caller handlers are trusted host callbacks registered by the application. They execute in the host process and do not inherit the gl-sandbox guarantee. Validate inputs at their boundary and give them truthful effects metadata:

uv run python examples/caller_tool.py

See examples/caller_tool.py for complete input/output JSON Schemas, effects, handler registration, receipt inspection, and expected offline output.

Sandboxed workspace operations

Four built-in capabilities are available when an explicit backend is supplied:

Stable capability ID Model-visible name Operation
workspace.list@1 workspace_list List staged files
workspace.read@1 workspace_read Read bounded file content
workspace.write@1 workspace_write Write bounded bytes
workspace.execute_command@1 workspace_execute_command Execute exact argv in sandbox

The Loader scans regular resource files into an immutable manifest with sizes and SHA-256 hashes. Sandbox creation is lazy: no backend is created until the Executor needs the workspace. On first use, SkillWorkspaceRuntime stages manifest resources, verifies hashes through the sandbox command channel, and applies the caller-supplied WorkspacePolicy (file count/size limits, command timeout/output limits, empty-by-default environment allowlist, and disabled network access). Commands receive exact argv vectors—not shell strings—and results include exit status, bounded stdout/stderr, timing, and truncation state.

If a caller allows workspace.* without providing a backend, the run fails closed with policy_denied and code workspace_unavailable. The deterministic demonstration in examples/workspace_demo.py uses an in-memory backend so it can run offline; it is not a production sandbox substitute. Production callers inject a real SandboxBackend and normally construct its transport from gl-sandbox public primitives.

Events, receipts, cancellation, and retries

Tool Runtime performs whole-batch admission preflight before dispatch. Every dispatched call emits correlated gl_skill.tool_call and gl_skill.tool_result events and produces a typed receipt. A failed call produces a failed receipt; GL Skill does not automatically retry it. Terminal events are couples to statuses: final_response means succeeded, cancelled means cancelled, and error carries other failure statuses.

Pass asyncio.Event for cooperative deadline cancellation:

cancellation_token = asyncio.Event()
cancellation_token.set()
async for item in client.run(request, cancellation_token=cancellation_token):
    if isinstance(item, SkillRunResult):
        assert item.status.value == "cancelled"

Limits on turns, tool calls, wall-clock time, and output size are set by RunLimits; workspace resource/command bounds are separate in WorkspacePolicy.

Deferred integrations

Deep Agents, remote lifecycle management, and bidirectional synchronization are deferred. AIP/GL Connectors may initiate runs or supply external integrations, but Skill scripts and commands execute only inside gl-sandbox.

The internal GLLM boundary is documented separately in runtime adapters; it is never loaded by the core import surface.

Optional workspace runtime

GL Skill never selects a sandbox provider or reads provider credentials. The application chooses and configures its supported gl-sandbox backend, then passes a factory that returns its provider-neutral SandboxBackend. lazy_workspace_tool_runtime() stores that factory without constructing a backend or importing gl_sandbox; the first executor-admitted workspace call initializes both exactly once. An instruction-only run, or a run with caller tools only, stays sandbox-free.

Callers consume the public GLSkillClient.run() stream; the executor does not expose a separate one-shot lifecycle.

The executor supplies an immutable ToolContext for every admitted call. Its request ID, remaining deadline, cancellation view, and complete workspace_policy are authoritative; unknown policy fields, invalid bounds, network access, and implicit environment inheritance fail closed. The default environment allowlist is empty. The workspace layer passes only exact argv vectors to the two public gl-sandbox primitives—no shell, provider-private helper, GNU command, or glob expansion is required.

Lifecycle ownership is deliberately singular. Normal completion is terminated by executor cleanup. If a public primitive is cancelled or its outer deadline expires, that primitive terminates its own sandbox and the workspace runtime only discards the handle; executor cleanup then becomes a no-op. This prevents a second termination of the same backend.

Development

Open-format naming, metadata, provider reuse, and runtime-ownership decisions are documented in Agent Skills format compatibility.

make setup
make check

make check runs formatting/lint checks, strict typing, unit tests, the bare-import footprint gate, and wheel construction. It uses the locked development environment; resolving or populating that environment may require access to the configured package index. Once dependencies and the build backend are available, the package tests and footprint probe are deterministic and offline.

Dependency-footprint gate

scripts/check_dependency_footprint.py verifies that the wheel contains both gl_skill and gl_skill/py.typed; that its base runtime dependencies include GLLM, jsonschema, and pyyaml; that a clean wheel-only environment can import gl_skill; and that doing so loads none of these forbidden top-level modules:

  • aip_agents, aip_sdk, glaip_sdk
  • gl_connectors
  • hermes
  • gllm_core, gllm_inference
  • gl_sandbox, e2b_code_interpreter, opensandbox, boto3, aioboto3
  • openai, anthropic, google.genai, google.generativeai
  • cohere, groq, litellm, mistralai, ollama, vertexai
  • skills_ref (development-only format oracle)

The gate also records that no optional GLLM extra is required in the built metadata. Future optional surfaces must extend this evidence with their declared dependency graph instead of relying on an unmeasured “runtime-free” label.

Examples index

Example Purpose
hello_world.py Canonical low-code GLSkill.run() call
quickstart_run.py Deterministic explicit-composition run() call
streaming_run.py Ordered events followed by one terminal result
caller_tool.py Register a trusted callback and inspect its receipt
workspace_demo.py Deterministic sandbox-policy demonstration using an in-memory backend
live_model/openai_smoke.py Explicitly credential-gated real-model smoke test

Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

gl_skill_binary-0.0.4-cp313-cp313-win_amd64.whl (859.4 kB view details)

Uploaded CPython 3.13Windows x86-64

gl_skill_binary-0.0.4-cp313-cp313-manylinux_2_31_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ x86-64

gl_skill_binary-0.0.4-cp313-cp313-macosx_13_0_arm64.whl (971.0 kB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

gl_skill_binary-0.0.4-cp312-cp312-win_amd64.whl (858.1 kB view details)

Uploaded CPython 3.12Windows x86-64

gl_skill_binary-0.0.4-cp312-cp312-manylinux_2_31_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ x86-64

gl_skill_binary-0.0.4-cp312-cp312-macosx_13_0_arm64.whl (936.8 kB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

gl_skill_binary-0.0.4-cp311-cp311-win_amd64.whl (883.7 kB view details)

Uploaded CPython 3.11Windows x86-64

gl_skill_binary-0.0.4-cp311-cp311-manylinux_2_31_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ x86-64

gl_skill_binary-0.0.4-cp311-cp311-macosx_13_0_arm64.whl (928.6 kB view details)

Uploaded CPython 3.11macOS 13.0+ ARM64

File details

Details for the file gl_skill_binary-0.0.4-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for gl_skill_binary-0.0.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d9139e7fbe1ae4248ad8d1a16862c58e299e5556154c366db1bcbd5e0f1b031f
MD5 fcb486b92843bd7fe8b4509c41cf037f
BLAKE2b-256 50fc19dc626858270423f1b0619af8b560560f9b0995bc886f6b8053a805c17c

See more details on using hashes here.

Provenance

The following attestation bundles were made for gl_skill_binary-0.0.4-cp313-cp313-win_amd64.whl:

Publisher: build-binary.yml on GDP-ADMIN/gl-sdk

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

File details

Details for the file gl_skill_binary-0.0.4-cp313-cp313-manylinux_2_31_x86_64.whl.

File metadata

File hashes

Hashes for gl_skill_binary-0.0.4-cp313-cp313-manylinux_2_31_x86_64.whl
Algorithm Hash digest
SHA256 2eb094bfb8d4c522af5bbb5191e22cfcc383239b7326ce09343078e029ad2d72
MD5 88204515a29bcdef26b0ce055b0adc3c
BLAKE2b-256 4db6e637afa88b8a097f4e72bfc2ea0432994058313aa5b4464443e94dcac807

See more details on using hashes here.

File details

Details for the file gl_skill_binary-0.0.4-cp313-cp313-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for gl_skill_binary-0.0.4-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 2de8074433d7c8a258041dd6fb825c8784f33d837f52a91610b5becba0064696
MD5 ec8a1cf0a8620c612db4fe50966097b6
BLAKE2b-256 78f1342b856078b84efa4a898fdb580ef6bf2cfa113004a5fb056fcab86632d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for gl_skill_binary-0.0.4-cp313-cp313-macosx_13_0_arm64.whl:

Publisher: build-binary.yml on GDP-ADMIN/gl-sdk

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

File details

Details for the file gl_skill_binary-0.0.4-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for gl_skill_binary-0.0.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9d92935087449bf95c3cd5020a075129c01cac8880dd82b996705592a2caf53e
MD5 888205cfaf2741c51ce3a5c80692ab23
BLAKE2b-256 67c65931ce45e343630f43dff95349e5d53df580bc3e80fa5065635361ddf955

See more details on using hashes here.

Provenance

The following attestation bundles were made for gl_skill_binary-0.0.4-cp312-cp312-win_amd64.whl:

Publisher: build-binary.yml on GDP-ADMIN/gl-sdk

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

File details

Details for the file gl_skill_binary-0.0.4-cp312-cp312-manylinux_2_31_x86_64.whl.

File metadata

File hashes

Hashes for gl_skill_binary-0.0.4-cp312-cp312-manylinux_2_31_x86_64.whl
Algorithm Hash digest
SHA256 aebc5af2325ca9aa5ce4386b6b345636edb647ac4374939d45b6a2f0c9c5779d
MD5 5a497cbb949fbdbc2535e85612ae1a4f
BLAKE2b-256 e1ac5edc2df78384c362aa7492e3e08c6bc91ffbf51073ffe5d0e17bbd5d18d5

See more details on using hashes here.

File details

Details for the file gl_skill_binary-0.0.4-cp312-cp312-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for gl_skill_binary-0.0.4-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 76fbe9886b4fc6877e3a0d20e0e8d7164e6bf21084c30f5221a3ca2e4d28188f
MD5 f1d66d955725d0fdc4e84186a035e445
BLAKE2b-256 e944b415f2b80606ed4d3cf584478b20f9b0f916261c1d21b8cfa077f0b49dde

See more details on using hashes here.

Provenance

The following attestation bundles were made for gl_skill_binary-0.0.4-cp312-cp312-macosx_13_0_arm64.whl:

Publisher: build-binary.yml on GDP-ADMIN/gl-sdk

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

File details

Details for the file gl_skill_binary-0.0.4-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for gl_skill_binary-0.0.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 67736b73cf493e80991cfede4b5b33ad7eb2b328890cd04fb88a981649b95bb3
MD5 13203d0d4cdee5c8a1a30fc821372468
BLAKE2b-256 b37fdf57c8c1eed39d3fb669af9456cc13a1f05c55a8ec5e5a3551499018ccf4

See more details on using hashes here.

Provenance

The following attestation bundles were made for gl_skill_binary-0.0.4-cp311-cp311-win_amd64.whl:

Publisher: build-binary.yml on GDP-ADMIN/gl-sdk

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

File details

Details for the file gl_skill_binary-0.0.4-cp311-cp311-manylinux_2_31_x86_64.whl.

File metadata

File hashes

Hashes for gl_skill_binary-0.0.4-cp311-cp311-manylinux_2_31_x86_64.whl
Algorithm Hash digest
SHA256 4b2451667bfa870d6bbc10ce6d1adb5fa9971c2e26c2d5148f1ecb4b0d813654
MD5 4bdd30b4fa67c192ef30439f98ee9996
BLAKE2b-256 e8690f0374d04dbbc93ff01fc7534371dc5d67bba52d2638285ecfbe15880c8d

See more details on using hashes here.

File details

Details for the file gl_skill_binary-0.0.4-cp311-cp311-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for gl_skill_binary-0.0.4-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 9bce1cf225a3414f4949e5b9266a35215813355a8f54ba4df926edb87182d7c1
MD5 adf14d6ad03f7ff7170e5e1edbe0ee52
BLAKE2b-256 105ed45ed6423913ce2605c123b6c2ec13b9a6c6723582fff15e380ba0be3bf9

See more details on using hashes here.

Provenance

The following attestation bundles were made for gl_skill_binary-0.0.4-cp311-cp311-macosx_13_0_arm64.whl:

Publisher: build-binary.yml on GDP-ADMIN/gl-sdk

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

Release history Release notifications | RSS feed

This release

0.0.4 This release

9 files

0.0.3

9 files

0.0.2

3 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