che-ical-mcp: Skill for Claude Code

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

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

A workflow for turning a software requirement into a complete Spectra change proposal with its required files and validation.

In plain words
What is it for?
Use it to propose features, bug fixes, or performance improvements, provided the Spectra command-line tool is installed.
Why use it?
It organizes the requirement into the artifacts needed to review and implement a proposed change.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: names the AskUserQuestion tool; installed under .agents/ (shared by several agents); mentions Codex.

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-propose/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-propose

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/psychquant/che-ical-mcp/spectra-propose"><img src="https://agentmods.dev/badge/skills/psychquant/che-ical-mcp/spectra-propose.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 3,200 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 warn 7 Sept 2026
SkillSpector: 1 finding, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Memory Poisoning · line 220
    Skill manipulates agent memory, state, or stored context. Memory corruption can alter personality, override safety rules, or cause unpredictable behavior.
    Fix: Protect agent memory and state from modification by untrusted content. Use read-only memory for critical instructions and validate all state changes.
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.00013 $0.03200
Opus 5 $0.00006 $0.01600
Sonnet 5 $0.00003 $0.00640
Haiku 4.5 $0.00001 $0.00320

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

Security

Grade A, and why

spectra-propose 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.

.agents/skills/spectra-propose/SKILL.md · 327 lines

How it starts

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

Create a complete Spectra change proposal — from requirement to validated artifacts — in a single workflow.

Input: The argument after $spectra-propose is the requirement description. Examples:

  • $spectra-propose add dark mode
  • $spectra-propose fix the login page crash
  • $spectra-propose improve search performance

If no argument is provided, the workflow will extract requirements from conversation context or ask.

Prerequisites: This skill requires the spectra CLI. If any spectra command fails with "command not found" or similar, report the error and STOP.

Steps

  1. Determine the requirement source

    a. Argument provided (e.g., "add dark mode") → use it as the requirement description, skip to deriving the change name below.

    b. Plan file available:

    • Check if the conversation context mentions a plan file path (plan mode system messages include the path like <name>.md)
    • If found, check if the file exists at ``
    • If a plan file is found, use the AskUserQuestion tool to ask:
      • Option 1: Use the plan file
      • Option 2: Use conversation context
    • If conversation context has no relevant discussion, mention this when presenting the choice
    • If the user picks the plan file → read it and extract:
      • plan_title (H1 heading) → use as requirement description
      • plan_context (Context section) → use as proposal Why/Motivation content
      • plan_stages (numbered implementation stages) → use for artifact creation
      • plan_files (all file paths mentioned) → use for Impact section
    • If the user picks conversation context → fall through to (c)

    c. Conversation context → attempt to extract requirements from conversation history

    • If context is insufficient, use the AskUserQuestion tool to ask what they want to build

    From the resolved description, derive a kebab-case change name (e.g., "add dark mode" → add-dark-mode).

    IMPORTANT: Do NOT proceed without understanding what the user wants to build.

  2. Classify the change type

    Based on the requirement, classify the change into one of three types:

    Type When to use
    Feature New functionality, new capabilities
    Bug Fix Fixing existing behavior, resolving errors
    Refactor Architecture improvements, performance optimization, UI adjustments

    This determines the proposal template format in step 5.

  3. Scan existing specs for relevance

    Before creating the change, check if any existing specs overlap:

    1. Use the Glob tool to list all files matching openspec/specs/*/spec.md
    2. Extract directory names as the spec identifier list
    3. Compare against the user's description to identify related specs (max 5 candidates)
    4. For each candidate (max 3), read the first 10 lines to retrieve the Purpose section
    5. If related specs are found, display them as an informational summary

    IMPORTANT:

    • If related specs are found, display them but do NOT stop or ask for confirmation — continue to the next step
    • If no related specs are found, silently proceed without mentioning the scan
  4. Create the change directory

    spectra new change "<name>" --agent codex
    

    If a change with that name already exists, suggest continuing the existing change instead of creating a new one.

  5. Write the proposal

    Get instructions:

    spectra instructions proposal --change "<name>" --json
    

    Write the proposal file using the template from instructions, with the following format based on change type:

    Feature

    ## Why
    
    <!-- Why this functionality is needed -->
    
    ## What Changes
    
    <!-- What will be different -->
    
    ## Non-Goals (optional)
    
    <!-- Scope exclusions and rejected approaches. Required when design.md is skipped. -->
    
    ## Capabilities
    
    ### New Capabilities
    
    - `<capability-name>`: <brief description>
    
    ### Modified Capabilities
    
    (none)
    
    ## Impact
    
    - Affected specs: <new or modified capabilities>
    - Affected code: <list of affected files>
    

Read the full file on GitHub · 327 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 · 327 lines · 13 tokens per session scan A e543c421d038

Subscribe to this mod's changes

spectra-propose 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 3,200 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