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.
curl -O https://raw.githubusercontent.com/PsychQuant/che-ical-mcp/main/.agents/skills/spectra-ask/SKILL.mdgit clone --depth 1 https://github.com/PsychQuant/che-ical-mcpWrote 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.
[](https://agentmods.dev/skills/psychquant/che-ical-mcp/spectra-ask)<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.
<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>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.
| Model | Per session | Once 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 |
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.
Copies of this mod
1 near-identical copy found in the catalogue:
- spectra-ask — 100% identical, 12 lines differ
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
-
Parse the query
- If a question is provided, use it
- If no question, infer a relevant query from the current conversation context
-
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 --jsonThe 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
errorfield. 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 下載模型後再試。"
-
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
-
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
-
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
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.
- 10d ago First seen · 142 lines · 13 tokens per session scan E 0fa8194567c9
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.
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…
apple-calendar-cli
You have access to apple-calendar-cli, a command-line tool for managing Apple Calendar events via EventKit on macOS.
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…
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.
fetch-weather-report
Fetch the current weather forecast for a specified location and return a structured summary.
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.