From tl
Use when you need to research, analyze, compare, plan, or structure thinking and aren't sure which primitive to reach for. Chains operations (gather, distill, rank, filter, verify, etc.) automatically based on your goal. Prefer this over individual primitives for multi-step work.
How this skill is triggered — by the user, by Claude, or both
Slash command
/tl:tackline <goal or operation chain><goal or operation chain>This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are running **/tackline** — a unified composable knowledge-work engine. You have 14 operations you can perform inline (no separate skill invocations needed) and orchestration patterns for parallelizing work across agents.
You are running /tackline — a unified composable knowledge-work engine. You have 14 operations you can perform inline (no separate skill invocations needed) and orchestration patterns for parallelizing work across agents.
Goal: $ARGUMENTS
Read the goal. Determine which operations to apply and in what order.
If $ARGUMENTS is empty, ask for a goal in one sentence.
If $ARGUMENTS names operations explicitly (e.g., "gather auth patterns then rank by risk"), follow that chain.
If $ARGUMENTS is a natural-language goal, select operations yourself using the decision tree below.
| User wants to... | Operations |
|---|---|
| Research a topic | gather |
| Research then prioritize | gather → distill → rank |
| Research then fact-check | gather → filter → verify |
| Compare two approaches | gather (both) → diff-ideas |
| Break down a large goal | decompose → plan |
| Break down then implement | decompose → rank → plan |
| Stress-test an idea | gather → critique |
| Prototype a structure | gather → distill → sketch |
| Condense verbose input | distill |
| Elaborate sparse input | expand |
| Rewrite items to a format | transform |
| Categorize by severity/type | assess |
| Remove irrelevant items | filter |
| Combine scattered findings | merge |
| Check claims against reality | verify |
| Find flaws in a proposal | critique |
| Sequence by dependency | plan |
Bias toward fewer operations. If the goal can be achieved in one operation, use one. Don't chain gather → distill → rank when gather alone answers the question.
Each operation transforms input into structured output. All emit pipe format (see rules/pipe-format.md). Output of one operation feeds the next via conversation context.
gather — Collect information with sources and confidence levels.
distill — Reduce to essentials. Arg: target count or topic filter ("to 5 bullets", "auth only").
expand — Add depth and evidence to sparse items. Inverse of distill. Ground new claims in sources.
transform — Rewrite every item independently per instruction ("as ticket titles", "as acceptance criteria"). Item count in = item count out.
rank — Score items 1-5 on stated criteria, reorder highest-to-lowest. Add criteria table. Break all ties.
filter — Binary keep/drop per item against a criterion. Renumber kept items. List dropped items separately.
assess — Assign categorical verdicts (CRITICAL/WARNING/OK or custom rubric). Group by category. Add rubric table.
verify — Check claims against code, git history, docs, or web. Verdict per claim: VERIFIED/REFUTED/UNCERTAIN with cited evidence. For 8+ claims, fan out up to 4 agents.
critique — Adversarial review. Classify each finding as FLAW (incorrect), GAP (missing), or RISK (could fail). Add severity table.
merge — Combine multiple pipe-format blocks from context. Dedup (>80% overlap or same title). Upgrade confidence when 2+ sources confirm. Combine source lists.
diff-ideas — Compare exactly two approaches across 4-6 dimensions. Produce comparison table with per-dimension winner and recommendation.
decompose — Split into 3-6 MECE sub-parts with scope, boundary, and isolation hint (independent/shared-state). Ground in actual file structure.
plan — Sequence items by dependency. Output: execution order, dependency graph, parallel waves with isolation hints (worktree/shared).
sketch — Structural skeleton with TODO placeholders. No implementation — just bones. Code, doc, config, schema, or workflow.
All output follows the pipe-format rule (loaded alongside this skill). For fan-out dispatch, follow the fan-out-protocol rule. For chains of 3+ operations, checkpoint per rules/memory-layout.md.
npx claudepluginhub tyevans/tackline --plugin tacklineCreates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.