Install
$ agentstack add skill-xaiht-tlamatini-tlamatini-flow-from-objective ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Flow from objective
Produce a canvas-loadable .flw for the user's stated objective.
> Superseded by the flow-making skill. Prefer flow-making: it drives the > FlowCreator engine (full 83-agent catalog + connection contracts) and emits a > validated, schemaVersion-2 .flw. This skill is kept as an alias/entry point — > do NOT hand-author the .flw JSON, because you do not carry the agent catalog > in context and a hand-written flow hallucinates agent types and will not load.
Procedure (delegate)
- Invoke the
flow-makingskill with the same inputs:
invoke_skill('flow-making', { "objective": "${input.objective}", "out_path": "${input.out_path}" }).
- Return its result verbatim:
{ flw_path, agent_count, connection_count }.
If you must run it directly
Use the shipped driver — it copies the FlowCreator template to an isolated dir, runs it, and writes the .flw:
python Tlamatini/agent/skills_pkg/flow_making/scripts/make_flow.py \
--objective "${input.objective}" --out "${input.out_path}"
The last stdout line is agent_count= connection_count= flw_path=.
Correct .flw shape (schemaVersion 2)
If you ever emit .flw JSON by hand, it MUST match the loader contract (acp-file-io.js::loadDiagram / flow_spec.py) — NOT a {version, agents, connections:[{from,to,kind}]} shape (that is obsolete and will not load):
{
"schemaVersion": 2,
"nodes": [
{"id": "starter-1", "text": "Starter", "left": "50px", "top": "50px",
"agentPurpose": "", "configData": {"target_agents": ["monitor_log_1"]}}
],
"connections": [
{"sourceIndex": 0, "targetIndex": 1, "inputSlot": 0, "outputSlot": 0}
],
"artifacts": {}
}
See agent/skills_pkg/flow_making/references/flw_schema.md for the full contract.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: XAIHT
- Source: XAIHT/Tlamatini
- License: MIT
- Homepage: https://xaiht.org
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.