Install
$ agentstack add skill-hellothisworld-agent-skill-verification-template-glossary ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Glossary (Wikipedia)
A Claude-style skill that answers glossary requests by looking the term up on English Wikipedia and returning a definition rendered as a web page, where every factual claim is backed by a file:line citation into the fetched article. It is built to be verified like a production component — see [skill-contract.json](skill-contract.json) for the machine-readable contract and [verification-rules.md](verification-rules.md) for how outputs are graded.
When to use
Use this skill for requests such as glossary Mexico or glossary Switzerland. The term after glossary is looked up; the skill produces a concise, source-grounded definition and a self-contained HTML page for it.
Tools
| Tool | Purpose | | --- | --- | | wikipedia_search | Search the offline Wikipedia snapshot cache. Returns {title, file, line, text} matches, best article first. | | wikipedia_fetch | Read a snapshot and return its structured article data plus the citable "lede" line. |
Contract rule: wikipedia_search must be used before wikipedia_fetch.
Offline-first design
Like the rest of this template, the default eval runs fully offline and deterministically. npm run glossary:build-cache fetches each term once from English Wikipedia (MediaWiki action API) and writes a citable snapshot to fixtures/wikipedia/.html. Each snapshot embeds a machine-readable glossary-data JSON block and a lede line that contains the exact query term verbatim, so citations stay valid even when Wikipedia's canonical title or opening phrasing differs from the query. After the cache exists, no network is required to run or verify the skill.
Procedure
- Parse the term from the
glossaryrequest. - Use
wikipedia_searchto locate the best-matching snapshot. - Use
wikipedia_fetchto read the snapshot and confirm the citable line. - Produce a structured answer whose claim cites that
file:line. - If no snapshot matches the term, return
insufficient_evidencewith an empty
claims array. Never invent a definition or a citation.
Output contract
The skill returns JSON with:
status:answered|insufficient_evidence|refusedanswer: a short natural-language definitionclaims: array of{ text, citations: [{ file, line }] }toolCalls: array of{ tool, arguments }confidence(optional):low|medium|high
The web-page deliverable (reports/latest/glossary/.html plus an index.html) is rendered from the same grounded snapshot by [src/skills/glossary/render.ts](../../src/skills/glossary/render.ts). See [examples.md](examples.md) for a concrete input/output pair.
Design note: contract vs. model
This SKILL.md and the contract are model-independent — they describe what a correct answer looks like. How reliably a given model satisfies the contract is measured separately by the eval harness. The offline glossary adapter is a reference implementation that satisfies the contract deterministically; the glossary-flaky adapter perturbs it to demonstrate failure detection.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: HelloThisWorld
- Source: HelloThisWorld/agent-skill-verification-template
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.