Note
Stable release — synced by publish actions.
Install the latest stable: dotnet add package Techne.Loom.SkillOrchestrator
Full package list → packages.released.md
| Area | Change |
|---|---|
| 🔄 Version sync | This block is refreshed by the publish workflow so the version shown here matches the latest published stable package set |
| 📦 Fallback assets | GitHub release aliases keep stable *.latest.nupkg URLs available when direct NuGet feed access is unavailable |
| 🔎 Package discovery | NuGet.org and packages.released.md remain the source of truth for install commands and exact stable version lookups |
Techne.Loom.Abstractions 0.2.82
Techne.Loom.Common 0.2.82
Techne.Loom.AgentOrchestrator 0.2.82
Techne.Loom.SkillOrchestrator 0.2.82
This section is updated automatically after each main-branch publish. Check NuGet.org or the stable fallback release for the latest version.
- Stable
so.dll --guideandao.dll --guideoffline guide surfaces with version metadata - Explicit public contracts for workflow, control-state, and hint payloads
- Node.js and Python package scaffolding alongside the .NET family
- Cleaner AO / SO CLI resume flows with
transition_idandcorrelation_keyexamples
Important
Techne Loom's primary released product is the SO-enhanced skill. It ships with a checked-in workflow contract, a locked runtime bundle, resumable execution, and audit-ready artifacts.
Most teams need skills that can survive interruption, handoff, review, and production scrutiny.
Techne Loom is built to give teams operational control.
Teams change their skill operating model when trust collapses.
This is what collapse looks like:
- the skill keeps producing output after it has already drifted off the intended path
- human handoff destroys the real execution state
- resume depends on chat memory instead of durable workflow state
- nobody can prove which step was skipped, repeated, or mutated
- audit begins only after evidence has already been blurred
At that point, the team no longer trusts the run.
Start with /loom-skill-enhancement.
It turns a prompt-shaped skill into a governed production asset.
It gives a team a skill that can:
- carry a checked-in workflow contract
- lock the exact runtime bundle it depends on
- run from a tracked workflow copy outside the skill folder
- stop with a strict boundary payload instead of vague prose
- resume with structured inputs instead of conversational guesswork
- emit Mermaid, HTML, and workflow JSON artifacts for review and audit
Adoption gives teams control.
| Dimension | Unenhanced skill | SO-enhanced skill |
|---|---|---|
| workflow control | implied in prompt behavior | checked-in workflow contract |
| runtime dependency | assumed or loosely documented | exact bundle lock in so-package-lock.json |
| mutable execution state | scattered across chat and operator memory | tracked runtime workflow copy |
| interruption handling | ad hoc retry or re-prompt | explicit boundary and structured resume |
| auditability | reconstructed after the fact | emitted step artifacts during execution |
| operator trust | personality-driven | contract-driven |
Without SO enhancement, the worst outcome is a skill that keeps moving after the team has lost the ability to defend what it is doing.
Real production-grade examples:
- An approval skill forgets which review branch it was on, asks the wrong approver again, and creates duplicated human sign-off loops with no durable seam showing where confusion started.
- A release skill resumes from chat memory, skips artifact verification, and publishes the wrong package because the operator assumed the previous checkpoint had already passed.
- A migration skill keeps mutating files after an interrupted run, but there is no external runtime copy, no event trail, and no point-in-time workflow backup to prove which edits belonged to which attempt.
- A compliance skill pauses mid-evidence collection and leaves only vague prose, so the next operator resumes with the wrong assumption and quietly contaminates the audit trail.
- A support or incident skill drifts through multiple handoffs until no one can produce an exact boundary payload, stable memory handoff, or defensible replay story.
That creates production liability.
After adopting /loom-skill-enhancement, the same scenarios become governable.
- approval loops become visible workflow errors with explicit blocked seams
- skipped release checks become reviewable workflow violations instead of silent production surprises
- interrupted migrations produce durable runtime copies, workflow backups, and event trails
- compliance pauses state exactly what input is missing and what evidence state existed before the stop
- support handoffs resume from workflow state and boundary memory, not from folklore
These incidents become diagnosable, resumable, reviewable, and defensible.
/loom-skill-enhancement is the fastest path from prompt-shaped skill behavior to released, auditable, tracked production execution.
The runtime is infrastructure. The skill is what the operator has to trust.
A production-facing skill must do more than run. It must:
- follow a reviewed workflow
- expose the next step clearly
- stop at the correct external seam
- preserve context for the next turn
- leave artifacts that survive review
The skill enhancer leads the story. SO makes the skill governable.
Today, the major released path is:
- SO as the deterministic runtime
- SO-enhanced skills as the operator-facing product
- Tracked, audit-first execution as the default model
AO and /loom-plan-execution still matter. They currently belong in the beta exploratory layer.
An SO-enhanced skill ships with:
- a checked-in
SKILL.md - a checked-in workflow template under
assets/so-workflow/ - an authoritative runtime lock file at
assets/so-workflow/so-package-lock.json - deterministic
dotnet so.dll runanddotnet so.dll resumeexecution - Mermaid, HTML, and workflow JSON audit artifacts for each step
- strict boundary payloads with
skill_hint,memory_for_next_step, and required continuation inputs
- Start from packages.released.md.
- Restore the released SO runtime bundle:
Techne.Loom.SkillOrchestrator,Techne.Loom.Common, andTechne.Loom.Abstractions. - Open the target skill's
SKILL.md. - Read
assets/so-workflow/so-package-lock.json. - Restore the exact locked SO runtime bundle from NuGet.
- Clone the checked-in workflow template to a runtime workflow copy outside the skill folder.
- Run
dotnet so.dll run --workflow-file <runtime-copy-path>. - If blocked, follow
skill_hintand continue withdotnet so.dll resume --workflow-file <runtime-copy-path> --result-file <path>.
Read SKILL.md -> read so-package-lock.json -> restore exact SO runtime bundle -> clone workflow template -> dotnet so.dll run -> inspect audit artifacts -> dotnet so.dll resume
- Start from packages.released.md for stable work.
- Use
/loom-skill-enhancement. - Read Using Techne Loom Skills.
- Read SkillOrchestrator Guide.
- Let the enhancement flow produce the checked-in workflow assets and runtime lock.
/loom-skill-enhancement -> review skill-plan -> review workflow template -> review runtime lock -> run the enhanced skill with dotnet so.dll
sequenceDiagram
autonumber
actor Operator
participant Skill as SO-Enhanced Skill
participant Lock as so-package-lock.json
participant Runtime as dotnet so.dll
participant Audit as Audit Artifacts
Operator->>Skill: Read SKILL.md and operating contract
Operator->>Lock: Read exact runtime version lock
Operator->>Runtime: Restore locked SO runtime bundle
Operator->>Runtime: Run workflow copy outside the skill folder
Runtime->>Audit: Write Mermaid, HTML, and workflow JSON backups
Runtime-->>Operator: Progress payload with workflow and artifact paths
alt External seam reached
Runtime-->>Operator: Boundary payload with skill_hint and memory_for_next_step
Operator->>Runtime: Resume with a structured result envelope
Runtime->>Audit: Append next-step audit artifacts
else Workflow completed
Runtime-->>Operator: Completed result payload
end
Execution stays on track because the next step is explicit, the mutable workflow copy is persisted, and the resume boundary is structured instead of improvised.
An SO-enhanced skill is not only executable. It is inspectable under pressure.
Every serious step can leave:
- a Mermaid rendering of the point-in-time workflow
- an HTML rendering for human inspection
- a workflow JSON backup for exact replay context
- boundary payloads that show why the skill stopped and what it needed next
flowchart TD
A[Checked-in skill contract] --> B[Checked-in workflow template]
B --> C[Runtime workflow copy outside skill folder]
C --> D[dotnet so.dll run]
D --> E[Progress payload]
D --> F[Boundary payload]
D --> G[Completed payload]
E --> H[Mermaid audit artifact]
E --> I[HTML audit artifact]
E --> J[Workflow JSON backup]
F --> K[skill_hint]
F --> L[memory_for_next_step]
F --> M[required_inputs]
K --> N[Structured external action]
N --> O[dotnet so.dll resume]
O --> H
O --> I
O --> J
That means operator questions are answered with artifacts instead of memory:
- What exact step did the skill stop at?
- Why did it stop?
- What input resumed it?
- What workflow shape existed at that point?
| If you want to... | Start from... | What it means | Example |
|---|---|---|---|
| run a skill that has already been enhanced and released | a released SO-enhanced skill | the skill already has its checked-in workflow assets and runtime lock | Example: "Run this released skill. If it blocks and needs my input, ask me first. If you can resolve it, continue the resume flow." |
| turn your own skill into something releasable and governed | your target skill with /loom-skill-enhancement |
this is the path that generates the future SO-enhanced version of your skill | Example: "Enhance this skill with /loom-skill-enhancement, create the workflow template, and let me review it with friendly output." |
| explore a route before the workflow is stable | /loom-plan-execution |
this is still the beta exploratory layer | Example: "Use /loom-plan-execution to translate the full plan we already made into a workflow, then use that workflow to track the run until the final successful outcome is generated." |
Read first:
- released skill run: Using Techne Loom Skills
- skill enhancement path: Using Techne Loom Skills, then SO Guide
- beta exploration path: AO Guide
- Choose the package channel first.
- For released skill execution, default to packages.released.md.
- Restore the full runtime bundle, never only the main runtime package.
- Keep runtime workflow copies, session state, event sidecars, and audit artifacts outside checked-in skill folders.
- Treat the checked-in skill workflow template as immutable source.
Use these guide surfaces as the operator contract:
dotnet so.dll --guide- Using Techne Loom Skills
- SkillOrchestrator Guide
- SO-Enhanced Skill Run Example
- Skills Input/Output Reference
AO and /loom-plan-execution remain important, but they belong to the beta exploratory layer.
Use AO when:
- the route is still unclear
- the top-level agent needs to compare frontiers
- the workflow is not yet stable enough to become a deterministic skill
Read AO through these beta surfaces:
| Role | NuGet | npm | PyPI |
|---|---|---|---|
| Abstractions | Techne.Loom.Abstractions |
@techne-loom/abstractions |
techne-loom-abstractions |
| Common | Techne.Loom.Common |
@techne-loom/common |
techne-loom-common |
| AO runtime | Techne.Loom.AgentOrchestrator |
@techne-loom/agent-orchestrator |
techne-loom-agent-orchestrator |
| SO runtime | Techne.Loom.SkillOrchestrator |
@techne-loom/skill-orchestrator |
techne-loom-skill-orchestrator |
Node.js and Python package names are still planned, not yet fully implemented runtime surfaces.
- Using Techne Loom Skills
- SO Guide
- SO-Enhanced Skill Run Example
- Skills Input/Output Reference
- AO Guide
- AGENTS.md
Techne Loom is not trying to make agent systems sound magical. It is trying to make governed skills hard to dismiss.