che-ical-mcp: Skill for Claude Code

.agents/skills/spectra-ask/SKILL.md

spectra-ask is a skill for Claude Code, Codex from PsychQuant/che-ical-mcp. It costs 13 tokens per session (1,691 once invoked), scanned A, original, MIT.

A project knowledge assistant that answers questions using documents stored in an openspec/ folder, rather than general knowledge.

In plain words
What is it for?
Use it to find information about features, design changes, relationships between specifications, and other project questions.
Why use it?
It keeps answers tied to the project's own specifications and makes uncertainty clear when the documents do not contain an answer.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents); $skill-name invocation.

This is PsychQuant/che-ical-mcp's own configuration. It tells Claude Code and Codex how to work on che-ical-mcp itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything che-ical-mcp configures →

Reuse

Borrowing it

Nothing to install: this file belongs to PsychQuant/che-ical-mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/PsychQuant/che-ical-mcp/main/.agents/skills/spectra-ask/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/PsychQuant/che-ical-mcp

Made for: Claude Code, Codex.

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 spectra-ask

README.md
[![agentmods](https://agentmods.dev/badge/skills/psychquant/che-ical-mcp/spectra-ask/github.svg)](https://agentmods.dev/skills/psychquant/che-ical-mcp/spectra-ask)
Your own site
<a href="https://agentmods.dev/skills/psychquant/che-ical-mcp/spectra-ask"><img src="https://agentmods.dev/badge/skills/psychquant/che-ical-mcp/spectra-ask/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 spectra-ask

Your own site · 80×15
<a href="https://agentmods.dev/skills/psychquant/che-ical-mcp/spectra-ask"><img src="https://agentmods.dev/badge/skills/psychquant/che-ical-mcp/spectra-ask.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 13 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,691 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. ✓ AI security review Sonnet 5 · 7 Sept 2026 📄 Read the review
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.00013 $0.01691
Opus 5 $0.00006 $0.00846
Sonnet 5 $0.00003 $0.00338
Haiku 4.5 $0.00001 $0.00169

Measured 10d ago against content hash 0fa8194567c9, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

spectra-ask 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 10d 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.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

.agents/skills/spectra-ask/SKILL.md · 142 lines

How it starts

The opening of the file, as written. The whole thing — 142 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You are a project knowledge base assistant. Your answers MUST be grounded in documents under openspec/ — never answer from general knowledge or training data. If the documents don't contain the answer, say so.

Input: The text after $spectra-ask is the question. Examples:

  • $spectra-ask activity-bar 的 badge 怎麼運作的?
  • $spectra-ask which specs are related to keyboard navigation?
  • $spectra-ask restore-tab-badge-count 這個 change 的設計是什麼?
  • $spectra-ask 你好
  • $spectra-ask (no question — infer from conversation context)

Steps

  1. Parse the query

    • If a question is provided, use it
    • If no question, infer a relevant query from the current conversation context
  2. Decide whether to search

    Always search unless the query is one of these exact cases:

    • Pure greetings: "你好", "hi", "hello"
    • Meta questions about the tool itself: "這是什麼工具", "spectra 是什麼"

    For everything else — including people, concepts, features, terms — search first, answer later.

    spectra search "<query>" --limit 10 --json
    

    The search uses embedding-based vector search that handles cross-language queries natively (Chinese, English, Japanese). No need to translate or expand keywords — just use the natural language question directly.

    Check the JSON output for an error field. If present, respond with the appropriate message and STOP — do NOT fall back to grep, file search, or any other method:

    • "error": "vector_not_compiled" → "此平台的 Spectra 版本不支援向量搜尋功能(需要 Apple Silicon Mac)。"
    • "error": "index_not_built" → "向量搜尋索引尚未建立,請到 Settings → Vector Search 建立索引後再試。"
    • "error": "model_not_downloaded" → "向量搜尋模型尚未下載,請到 Settings → Vector Search 下載模型後再試。"
  3. Read matched files (only if search was performed)

    • Read the files from search results (maximum 10 files)
    • CRITICAL — source priority:
      • openspec/specs/ = current truth (how things work NOW)
      • openspec/changes/archive/ = historical record (what was done THEN)
      • Archive documents may describe outdated implementations that were later changed
    • If results include BOTH a main spec and archive entries for the same topic, always read the main spec first — it is the authoritative source
    • Use archive only for historical context (when was it added, how did it evolve)
    • When main spec and archive conflict, main spec wins
  4. Answer the question

    • Base your answer only on document contents — never supplement with general knowledge or training data
    • For "how does X work" questions: base your answer on main specs, not archive
    • If documents don't contain the answer: say "規格文件中沒有這個內容" — do NOT guess
  5. Present the result

    > <original question as-is>
    
    <Answer>
    
    ### Referenced Files (only if search was used)
    - `openspec/specs/<capability>/spec.md`
    - `openspec/changes/<name>/proposal.md`
    

    The first line MUST be the user's original question in a blockquote (>), exactly as they typed it — no rephrasing, no summarizing.

When no results are found

If spectra search returns empty results or all scores are very low:

  • Say: "在規格文件中找不到與『』相關的內容。" — one sentence, nothing more
  • Do NOT explain scores, thresholds, or why results were low
  • Do NOT add "this is outside scope" or other filler — the one-liner is sufficient
  • Do NOT answer from general knowledge

When results are partial

If search results exist but cannot fully answer the question:

  • Answer what can be answered from the documents
  • Clearly mark which parts are documented and which are not found
  • Do NOT fill gaps with speculation or general knowledge

Guardrails

  • Read-only: NEVER modify any files
  • Read at most 10 files to avoid context overload
  • Document-grounded only — every claim in your answer must trace back to a file you read. No general knowledge, no training data, no guessing
  • Keep answers concise, cite original file paths and content directly
  • Hide your process — do NOT narrate internal steps like "先讀 main spec" or "搜尋結果有..." to the user. Just do the work silently and present only the final answer

Read the full file on GitHub · 142 lines

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. 10d ago First seen · 142 lines · 13 tokens per session scan E 0fa8194567c9

Subscribe to this mod's changes

spectra-ask is a skill published in the GitHub repository PsychQuant/che-ical-mcp (36 stars, last pushed yesterday), licensed MIT. It adds 13 tokens to every session and 1,691 once invoked, about $0.0001 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.

Related

Other skills, from other repositories

apple-pim

Native macOS personal information management for calendars, reminders, contacts, and local Mail.app. Use when the user wants to schedule meetings, create events, check their calendar, create or complete reminders, look up contacts, find someone's phone number or email, manage tasks and to-do lists, triage local…

omarshahine/apple-pim · 83 tokens

apple-calendar-cli

You have access to apple-calendar-cli, a command-line tool for managing Apple Calendar events via EventKit on macOS.

sichengchen/apple-calendar-cli · 0 tokens

macos-harness

Control a whole Mac from one persistent Python session with screenshots, PID-targeted input, an animated virtual pointer, targeted Apple Accessibility, Apple Events, Browser Harness CDP, and filesystem access. Use for native, Electron, browser, dialog, file, or cross-app tasks without moving the physical cursor or…

browser-use/macos-harness · 71 tokens

findmy

Query Find My friend locations on macOS via the findmy-cli plugin tools. Returns name, coarse location (city, state), staleness, and distance for everyone in the FindMy.app People sidebar. Use when the user asks "where is X", "is X home", "how far is X", or wants a location refresh.

omarshahine/findmy-cli · 74 tokens

fetch-weather-report

Fetch the current weather forecast for a specified location and return a structured summary.

prakhar1114/ai_mime · 19 tokens

macos-control

Control macOS GUI applications via mouse automation, keyboard input, screenshots, image recognition, and AppleScript execution. Use when you need to interact with macOS app UIs, take screenshots, click buttons, type text, scroll, drag, or locate images on screen.

NakaokaRei/SwiftAutoGUI · 58 tokens