wiki-cleanup

Review and clean up the tik4net GitHub wiki pages against the source code.

198|97|Updated Aug 16, 2015
One-click install
npx skills add https://github.com/danikf/tik4net --skill wiki-cleanup-danikf
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: wiki-cleanup
Source: https://github.com/danikf/tik4net/tree/main/.claude/skills/wiki-cleanup
Command: npx skills add https://github.com/danikf/tik4net --skill wiki-cleanup-danikf

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? The tik4net GitHub wiki drifts out of sync with the library: examples stop compiling, pages document superseded workarounds, leaked lab credentials appear in transcripts, and newcomers hit protocol depth before a working example. This Skill audits the wiki page by page against the source code so the documentation stays accurate, ordered, and safe. ## Core Features & Use Cases - Nine-check page audit: verifies factual claims against the C# source, removes historical narrative, detects superseded workarounds, validates code samples, checks page scope, altitude, language, secrets, and placement. - Compile-verified examples: runs WikiSampleCompilationTests so every C# block on the wiki and README compiles against the current library, including receiver-type checks on ITikConnection facets. - Whole-wiki coverage pass: checks that central concepts, main interfaces, and entity families are actually documented, plus link-graph analysis for broken anchors and orphan pages. - Use Case: Before a 4.0 release, run the skill over all 41 wiki pages to confirm examples compile, maturity markers are sweepable, and no lab credentials remain. ## Quick Start Review the tik4net wiki page Getting-started against the source code and report any findings.

Frequently Asked Questions about wiki-cleanup

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I verify wiki code examples still compile against the library?

Run dotnet test on tik4net.unittests filtered to WikiSampleCompilationTests, which compiles every C# block on the wiki and README against the current library. It finds the wiki as a sibling tik4net.wiki directory or via the TIK4NET_WIKI_DIR variable.

How do I audit GitHub wiki pages for stale documentation?

Work one page at a time through nine checks: verify claims against the source with grep, remove historical narrative, detect superseded workarounds, validate examples, check scope, altitude, language, secrets, and placement. Finish with a whole-wiki coverage pass for missing concepts.

Does this skill cover the repository's own docs like AGENTS.md?

No. The wiki-cleanup skill covers only the human-facing GitHub wiki in the sibling tik4net.wiki clone plus the repository README. AI-facing docs such as AGENTS.md, ARCHITECTURE.md, and Docs/ are handled by the separate project-docs-cleanup skill.

Why do wiki samples fail even when the member exists in the library?

The member often exists but not on the declared receiver type. Optional facets like ITikRawSentenceConnection are not folded into ITikConnection, so a sample declaring ITikConnection cannot call CallCommandSync or SafeModeTake. The compile test catches this class of defect.

Can the skill rename or restructure wiki pages?

Renaming breaks every external link and search result, so the skill only proposes renames and never performs one without user agreement. When agreed, every inbound link must be updated in the same commit, one page per commit, and never pushed.