AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Tlamatini Flow From Objective

skill-xaiht-tlamatini-tlamatini-flow-from-objective · by XAIHT

Turn a one-sentence objective into a downloadable .flw workflow that wires the right Tlamatini visual agents and connections.

No reviews yet
0 installs
21 views
0.0% view→install

Install

$ agentstack add skill-xaiht-tlamatini-tlamatini-flow-from-objective

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-xaiht-tlamatini-tlamatini-flow-from-objective)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Tlamatini Flow From Objective? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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)

  1. Invoke the flow-making skill with the same inputs:

invoke_skill('flow-making', { "objective": "${input.objective}", "out_path": "${input.out_path}" }).

  1. 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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.