test-skill

test-skill is a skill for Claude Code, Codex from Alex8791-cyber/cognithor. It costs 62 tokens per session (464 once invoked), scanned A, original, Apache-2.0.

A diagnostic check for the full lifecycle of a Cognithor skill, from scanning its folder to matching a user request and running its asynchronous code. It tests exact and approximate keyword matching and returns a status response.

In plain words
What is it for?
Use it to test skill registration, keyword matching, scan cycles, and async execution. It is useful when checking why a request routes to the wrong skill or a skill is not found.
Why use it?
It helps find whether a skill is discovered and routed correctly, especially when similar skills compete for the same request. It also checks that asynchronous execution completes without blocking calls.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to test skill registration, keyword matching, scan cycles, and async execution. It is useful when checking why a request routes to the wrong skill or a skill is not found.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/alex8791-cyber/cognithor/test_skill
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 Alex8791-cyber/cognithor --skill test_skill
Clone the repo
git clone --depth 1 https://github.com/Alex8791-cyber/cognithor

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 test-skill

README.md
[![agentmods](https://agentmods.dev/badge/skills/alex8791-cyber/cognithor/test_skill/github.svg)](https://agentmods.dev/skills/alex8791-cyber/cognithor/test_skill)
Your own site
<a href="https://agentmods.dev/skills/alex8791-cyber/cognithor/test_skill"><img src="https://agentmods.dev/badge/skills/alex8791-cyber/cognithor/test_skill/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 test-skill

Your own site · 80×15
<a href="https://agentmods.dev/skills/alex8791-cyber/cognithor/test_skill"><img src="https://agentmods.dev/badge/skills/alex8791-cyber/cognithor/test_skill.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 62 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 464 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.00062 $0.00464
Opus 5 $0.00031 $0.00232
Sonnet 5 $0.00012 $0.00093
Haiku 4.5 $0.00006 $0.00046

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

Security

Grade A, and why

test-skill 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.

The scan reads SKILL.md. This mod also ships 3 executable files (__init__.py, skill.py, test_skill.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

skills/test_skill/SKILL.md · 48 lines

What it actually says

Test Skill

Extended diagnostic that validates the full skill lifecycle: directory scan → SkillRegistry registration → keyword matching → async execute().

Steps

  1. Trigger the skill — Cognithor must match via keyword similarity:
    cognithor test_skill <eingabe>
    
  2. Verify registration — confirm the skill appears in the registry:
    User > Zeige alle registrierten Skills
    # Expected: test_skill listed with NAME="test_skill", VERSION="0.1.0"
    
  3. Check keyword matching — the SkillRegistry uses exact match (case-insensitive) then fuzzy match (70% threshold). Verify the input routes to this skill, not the sibling test skill
  4. Inspect the responseexecute() returns:
    {"status": "ok", "result": "TODO"}
    
  5. Confirm async execution — the skill runs via async def execute(self, params), so verify no blocking calls appear in logs

Example

User > cognithor test_skill Prüfe den Lifecycle
Cognithor > {"status": "ok", "result": "TODO"}

# Success: skill was discovered, matched, and executed asynchronously

Troubleshooting

Symptom Cause Fix
Routes to test instead Fuzzy match overlap Use the full slug test_skill to force exact match
ModuleNotFoundError __init__.py missing Verify skills/test_skill/__init__.py exists
Timeout on execute Event loop blocked Check for synchronous calls in skill.py

Notes

Diagnostic-only skill — "result": "TODO" is intentional. Differs from test by validating keyword disambiguation and the full scan-to-execute lifecycle.

Files

What ships with it

4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 · 48 lines · 62 tokens per session scan A 7e356692776d

Subscribe to this mod's changes

test-skill is a skill published in the GitHub repository Alex8791-cyber/cognithor (154 stars, last pushed 2d ago), licensed Apache-2.0. It adds 62 tokens to every session and 464 once invoked, about $0.0003 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

forkmind-archivist

Use when conversation context should be saved and then removed from the live model window — context is getting full, a sub-topic is finished, a large file dump or tool transcript is done being useful, or the user says "offload my context", "save this conversation and clear it", "archive this as a DAG", "restore that…

Medhovarsh/forkmind · 136 tokens

forkmind

Use when debugging, comparing, or regression-testing LLM / agent calls — when the user wants to capture LLM traffic, see a conversation as a branchable DAG, fork an alternative prompt or model from a past turn, or pin good outputs as baselines to catch drift. ForkMind is local-first (no cloud, no account) and proxies…

Medhovarsh/forkmind · 132 tokens

dws

A command-line guide for DingTalk, a workplace platform with chat, documents, calendars, approvals, tasks, and other business tools.

Pinvou/pinvou-agent · 187 tokens

package-author

A packaging guide for turning scripts, skills, or an MCP service into a standard plugin package. MCP is a way for an AI assistant to connect to external tools.

Pinvou/pinvou-agent · 133 tokens

notes

Skill "notes" from Pinvou/pinvou-agent, covering ima notes, operations, write rules, examples and response handling.

Pinvou/pinvou-agent · 0 tokens

visual-design

A design skill for turning content into complete, self-contained HTML pages and visual materials such as websites, banners, posters, reports, resumes, and portfolios. It follows a defined visual design system and does not use outside images or code libraries.

Pinvou/pinvou-agent · 152 tokens