원클릭으로
tapd
Use Symphony's generated typed TAPD tools for tracker workflow actions. Provides TAPD capability semantics and workpad rules.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use Symphony's generated typed TAPD tools for tracker workflow actions. Provides TAPD capability semantics and workpad rules.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use Symphony's generated typed Linear tools for tracker workflow actions. Provides Linear capability semantics and workpad rules.
Investigate stuck runs and execution failures by tracing Symphony and Codex logs with issue/session identifiers; use when runs stall, retry repeatedly, or fail unexpectedly.
Land a PR by monitoring conflicts, resolving them, waiting for checks, and squash-merging when green; use when asked to land, merge, or shepherd a PR to completion.
Push current branch changes to origin and create or update the corresponding pull request; use when asked to push, publish updates, or create pull request.
Land a PR by monitoring conflicts, resolving them, waiting for checks, and squash-merging when green; use when asked to land, merge, or shepherd a PR to completion.
Write a feature spec or PRD from a problem statement or feature idea. Use when turning a vague idea or user request into a structured document, scoping a feature with goals and non-goals, defining success metrics and acceptance criteria, or breaking a big ask into a phased spec.
| name | tapd |
| description | Use Symphony's generated typed TAPD tools for tracker workflow actions. Provides TAPD capability semantics and workpad rules. |
Use this skill with the generated Typed Workflow Tool Inventory in the prompt. The inventory is authoritative for exact runtime tool names available in the current session.
This skill owns TAPD tracker semantics: which typed capability to use, the stable TAPD workpad identity, and the argument shape for routine Story actions. Workflow templates own when those actions are allowed, route-policy handling, repo-provider behavior, and completion bars.
Do not infer TAPD REST paths, raw parameter shapes, workspace IDs, comment HTML encoding, or raw status mutation syntax from memory. TAPD provider details are owned by Symphony typed tools.
For each TAPD tracker action, call the exact runtime tool name from the generated inventory for the matching semantic capability:
tracker.issue_snapshot: read the Story, raw status, workflow route states,
labels, comments, and the adapter-resolved active workpad reference.tracker.move_issue: move a Story to a workflow route, lifecycle phase, or
raw status from the typed snapshot. The tool owns TAPD status update syntax.tracker.upsert_workpad: create or update the single active workflow workpad.
Use the workpad_id returned by tracker.issue_snapshot when it is present.
If no workpad_id exists yet, omit it and let the typed tool create and
register the canonical workpad. The tool owns the provider comment mapping,
canonical Markdown rendering, and Markdown-to-TAPD rich text conversion.tracker.attach_external_reference: attach a caller-owned external reference
URL to the Story. TAPD currently stores this through the canonical workpad
comment. Pass the reference_kind supplied by the active workflow template.tracker.upsert_comment: create a general Story comment or update a specific
existing comment by comment_id.tracker.create_follow_up_issue: create a constrained follow-up Story in the
same TAPD workspace.tracker.read_issue_relations: read direct Story relations.tracker.add_issue_relation: link two Stories through TAPD direct relations.tracker.read_issue_dependencies: read time-relative dependencies and
normalized incoming blockers.tracker.save_issue_dependency: save one dependency relation using semantic
Story ids.tracker.provider_diagnostics: run fixed read-only TAPD provider diagnostics
when explicitly exposed for operator or troubleshooting workflows.If the inventory does not list the required typed capability, treat that as a workflow blocker unless the prompt explicitly supplies a different typed tool. Do not construct TAPD REST requests or token-bearing shell helpers for workflow actions.
Use workpad_id as the workpad identity. The stored workpad body is human
readable content only; do not use headings, sections, checkbox text, or comment
body shape to find or update a workpad.
Read current Story context:
{
"issue_id": "{{ issue.id }}",
"include_comments": true,
"include_attachments": true,
"comment_limit": 50
}
Move a Story to the workflow review route:
{
"issue_id": "{{ issue.id }}",
"state_name": "review",
"expected_current_state": "in_progress",
"reason": "implementation is ready for review"
}
Upsert the workflow workpad:
{
"issue_id": "{{ issue.id }}",
"workpad_id": "tapd:issue:{{ issue.id }}:workpad",
"body": "### Plan\n\n- [x] ...\n\n### Validation\n\n- ..."
}
When workpad_id is omitted, the upsert tool creates and registers the
canonical workpad for the Story.
Create a general comment:
{
"issue_id": "{{ issue.id }}",
"body": "Validation completed."
}
Update a specific comment:
{
"comment_id": "comment-id",
"body": "Updated comment body."
}
Attach an external reference:
{
"issue_id": "{{ issue.id }}",
"url": "https://provider.example/org/repo/references/123",
"title": "TAPD implementation",
"reference_kind": "<workflow-supplied-kind>",
"provider_kind": "cnb",
"external_id": "123",
"metadata": {
"repository": "org/repo"
}
}
Create and link a follow-up Story:
{
"source_issue_id": "{{ issue.id }}",
"title": "Follow-up: scoped improvement",
"description": "Problem statement...\n\nAcceptance Criteria\n- ..."
}
{
"source_issue_id": "{{ issue.id }}",
"target_issue_id": "TAPD-1153000000000000010"
}
Read and save dependency facts:
{
"issue_id": "{{ issue.id }}"
}
{
"blocking_issue_id": "TAPD-1153000000000000002",
"blocked_issue_id": "{{ issue.id }}",
"current_user": "symphony"
}
tracker.issue_snapshot before state transitions so route keys, raw TAPD
states, and lifecycle phases come from the current Story workflow.review, developing, or rework for
tracker.move_issue when available in the typed snapshot.tracker.upsert_workpad only for the canonical workflow workpad.tracker.upsert_comment for non-workpad comments.tracker.create_follow_up_issue and tracker.add_issue_relation when
splitting out related work instead of constructing TAPD Story REST calls.tracker.read_issue_dependencies and tracker.save_issue_dependency
when the workflow explicitly needs dependency/blocker relation facts.tracker.attach_external_reference for external links. For workflow-owned
PR/MR links, pass the template-supplied reference_kind; TAPD stores the link
in the canonical workpad comment until a structured TAPD attachment API is
available.Only use inventory-listed typed TAPD tools for Story reads and writes, state transitions, workpad/comment updates, external reference links, relations, dependencies, and provider health checks.
Use tracker.provider_diagnostics for fixed provider health checks when the
inventory exposes that capability. For migration or metadata needs not covered
by typed tools, stop as blocked and request a new typed capability instead of
calling TAPD REST directly.
Do not ask for or invent a raw TAPD fallback. Routine TAPD gaps require a new typed capability; troubleshooting gaps require a fixed diagnostics typed tool that does not accept arbitrary REST paths or payloads.