Views
No views yet
workflow-shape-retrieval
Intelligence Package. The model is a workflow-shape librarian: it retrieves
known topologies, ranks them, and explains why they fit. It does not generate
task payloads or execute workflows.ttasks.
The target workflow runtime is
@ianphil/ttasks-ts, with downstream
runtime consumption through
ianphil/ttasks-wtd.wtd_runtime_bundle_v10.4.3structural30TrueTrueTrueTrueexportedexportedencoder.onnxlatents.f16text-index.json and exported workflow-shape metadata.encoder.onnx and latents.f16 when the
bundle advertises draftDagStructuralRetrieval: true.node_features, adjacency, node_mask, and struct_features.
encoder.onnx maps those tensors to a query latent vector. The runtime then
compares that vector with each row in latents.f16 using nearest-neighbor
distance and returns candidates ordered by closest structural match.1 / (1 + latent_distance)v0.4.1 ranker calibration keeps retrieval_score dominant
and uses node, edge, and depth compatibility as small tie-breakers so strong raw
structural matches do not get buried.ranker-config.json for weights and ranker-schema.json for feature names
and explanation fields.1wmd verify-runtime --input <bundle> --json
2wmd topology-eval-runtime \
3 --input <bundle> \
4 --manifest evals/topology-drafts.json \
5 --k 15 \
6 --jsonv0.4.1 topology gate is 15/15 ranked top-3, 15/15 ranked top-10, and zero
raw top-1 matches degraded below ranked top-3.1wmd verify-runtime --input <bundle> --json
2wmd retrieve-runtime \
3 --input <bundle> \
4 --draft-dag examples/dataset-ingest-draft.json \
5 --k 5 \
6 --json
7wmd benchmark-runtime \
8 --input <bundle> \
9 --query "dataset ingestion eval publish candidate" \
10 --draft-dag examples/dataset-ingest-draft.json \
11 --runs 3 \
12 --jsonmanifest.jsonrelease.jsonpatterns.jsonlabels.jsontext-index.jsonchecksums.jsonencoder.onnx — encoder-only VAE path for draft-DAG tensorslatents.f16 — pattern centroid latent matrix in patterns.json ordertext-projection.f32 — hash text projection for runtime node featurizationranker-config.json — deterministic heuristic ranker weightsranker-schema.json — ranker feature and explanation contractevals/gold-queries.json — text retrieval fixture suiteevals/draft-dag-gold.json — draft-DAG fixture suiteevals/topology-drafts.json — topology-native draft eval manifest