tsq-spec

tsq-spec is a skill for Claude Code from sonature-lab/timsquad. It costs 81 tokens per session (708 once invoked), scanned A, original, MIT.

A specification check that looks for the project document describing a feature before implementation starts. SSOT, or single source of truth, means one agreed document is treated as the current reference for the work.

In plain words
What is it for?
Use it to check whether a feature has a current specification, review the status of all project specifications, and get guidance on writing or recompiling missing documentation.
Why use it?
It exposes missing or outdated requirements so code is less likely to drift from the intended design.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter.

Good fit Use it to check whether a feature has a current specification, review the status of all project specifications, and get guidance on writing or recompiling missing documentation.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/sonature-lab/timsquad/tsq-spec
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add sonature-lab/timsquad --skill tsq-spec
Clone the repo
git clone --depth 1 https://github.com/sonature-lab/timsquad

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for tsq-spec

README.md
[![agentmods](https://agentmods.dev/badge/skills/sonature-lab/timsquad/tsq-spec/github.svg)](https://agentmods.dev/skills/sonature-lab/timsquad/tsq-spec)
Your own site
<a href="https://agentmods.dev/skills/sonature-lab/timsquad/tsq-spec"><img src="https://agentmods.dev/badge/skills/sonature-lab/timsquad/tsq-spec/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for tsq-spec

Your own site · 80×15
<a href="https://agentmods.dev/skills/sonature-lab/timsquad/tsq-spec"><img src="https://agentmods.dev/badge/skills/sonature-lab/timsquad/tsq-spec.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 81 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 708 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00081 $0.00708
Opus 5 $0.00041 $0.00354
Sonnet 5 $0.00016 $0.00142
Haiku 4.5 $0.00008 $0.00071

Measured 9d ago against content hash 170c62c4d61c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

tsq-spec scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

templates/base/skills/tsq-spec/SKILL.md · 59 lines

What it actually says

Spec Gate

SSOT 문서 존재 여부를 확인하여 스펙 없는 구현을 방지한다.

Contract

  • Trigger: /tsq-spec 호출 또는 구현 시작 전 자동 확인
  • Input: $ARGUMENTS (기능명) 또는 미지정 시 전체 SSOT 상태
  • Output: SSOT 상태 리포트 (존재/stale/미존재) + 권장 액션
  • Error: SSOT 디렉토리 자체가 없을 경우 "NOT FOUND" 안내
  • Dependencies: tsq-protocol

Protocol

  1. SSOT 검색: $ARGUMENTS로 전달된 기능명으로 .timsquad/ssot/ 디렉토리 탐색
  2. 존재 확인: 해당 기능의 스펙 문서(PRD, 설계문서, API 스펙) 존재 여부 판단
  3. 상태 판정:
    • 존재 + 최신: 스펙 요약 출력 + "구현 가능" 안내
    • 존재 + stale: "스펙 갱신 필요" + tsq compile 재실행 안내
    • 미존재: advisory 경고 + 스펙 작성 가이드 제공
  4. 결과 리포트: 상태 + 권장 액션을 구조화하여 출력

Verification

Check Method Pass Criteria
SSOT 파일 존재 .timsquad/ssot/ 탐색 관련 문서 1개 이상
stale 여부 compile-manifest hash 비교 hash 일치
스펙 커버리지 기능 키워드 매칭 해당 기능 언급 존재

Quick Rules

Gate 동작

  • 미존재 시: advisory 경고 (차단 아님)
    [SPEC GATE] 기능 "{name}"에 대한 SSOT 문서가 없습니다.
    스펙 먼저 작성하세요: .timsquad/ssot/{name}.md
    가이드: PRD → 설계문서 → Compiled Spec 순서
    
  • stale 시: tsq compile 재실행 안내
    [SPEC GATE] SSOT 문서가 최신이 아닙니다. `tsq compile` 재실행 필요.
    
  • Phase gate에서만 실제 차단 (일반 사용 시 advisory)
  • $ARGUMENTS 미지정 시 전체 SSOT 상태 요약
  • PRD, 설계문서, API 스펙 모두 SSOT로 인정
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 59 lines · 81 tokens per session scan A 170c62c4d61c

Subscribe to this mod's changes

tsq-spec is a skill published in the GitHub repository sonature-lab/timsquad (11 stars, last pushed 9d ago), licensed MIT. It adds 81 tokens to every session and 708 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.