Skip to main content
ClaudeWave
Skill2.8k estrellas del repoactualizado 16d ago

wiki-lint

Wiki-lint audits a wiki for quality and consistency issues including contradictions, stale claims, orphan pages, missing cross-references, and knowledge gaps. Use this skill periodically or when requested to perform a comprehensive health check of wiki content, generating a structured report and logging results to track wiki maintenance over time.

Instalar en Claude Code
Copiar
git clone --depth 1 https://github.com/open-gitagent/opengap /tmp/wiki-lint && cp -r /tmp/wiki-lint/examples/llm-wiki/skills/wiki-lint ~/.claude/skills/wiki-lint
Después abre una sesión nueva de Claude Code; el skill carga automáticamente.

SKILL.md

# Wiki Lint

Audit the wiki for quality and consistency issues.

## Workflow

### Step 1: Read the full index
Read `memory/wiki/index.md` to get the complete page catalog.

### Step 2: Check each category

**Contradictions**
- Scan pages that reference the same entities or concepts
- Flag claims that conflict across pages
- Note which sources support each side
- Recommend resolution (usually: update the older claim with a note)

**Stale claims**
- Check page frontmatter `updated` dates
- Flag pages not updated in recent ingests that cover topics where new sources exist
- Identify claims that newer sources have superseded

**Orphan pages**
- Find pages with no inbound `[[wikilinks]]` from other pages
- These may be valid standalone pages or may indicate missing cross-references

**Missing pages**
- Scan for `[[wikilinks]]` that point to pages that don't exist yet
- Identify important concepts mentioned frequently but lacking their own page

**Missing cross-references**
- Find pages that discuss the same entities but don't link to each other
- Suggest wikilinks that should be added

**Knowledge gaps**
- Based on the topics covered, suggest:
  - Questions worth investigating
  - Sources worth finding
  - Angles not yet explored

### Step 3: Report

Produce a structured report:

```markdown
# Wiki Health Report — [date]

## Contradictions (X found)
- [page-a] vs [page-b]: [description of conflict]

## Stale Claims (X found)
- [page]: last updated [date], but [newer-source] may supersede

## Orphan Pages (X found)
- [page]: no inbound links

## Missing Pages (X found)
- [[concept-name]]: referenced in [N] pages but has no page

## Missing Cross-References (X found)
- [page-a] and [page-b] both discuss [topic] but don't link

## Suggested Investigations
- [question or source suggestion]
```

### Step 4: Log
Append to `memory/log.md`:
```
## [YYYY-MM-DD] lint | Wiki Health Check
- Contradictions: X
- Stale claims: X
- Orphan pages: X
- Missing pages: X
- Missing cross-references: X
```
document-reviewSkill

Reviews financial documents (prospectuses, ADVs, marketing materials) for FINRA 2210 compliance, required disclosures, and balanced presentation. Use when reviewing financial statements, audit documents, regulatory filings, or when the user mentions compliance checks, financial audits, or document verification.

regulatory-analysisSkill

Analyzes documents and processes against FINRA, SEC, Federal Reserve, and CFPB regulatory frameworks. Identifies compliance gaps, classifies findings by severity, and recommends remediation. Use when performing compliance audits, regulatory reviews, gap analyses, or verifying policy adherence to financial regulations.

create-agentSkill

Creates and configures agent.yaml files, writes SOUL.md personality definitions, and sets up agent directory structures with skills, tools, and knowledge. Use when the user wants to configure an agent, create agent.yaml, write SOUL.md, set up agent directory structure, or customize agent settings.

export-agentSkill

Converts agent definitions between frameworks — exports to Claude Code, OpenAI, CrewAI, Lyzr, and GitHub Models formats, and imports from Claude, Cursor, and CrewAI projects. Use when the user wants to convert an agent, migrate to another framework, export to LangChain/AutoGen/CrewAI, or import from existing automation tools.

get-startedSkill

Guides installation of gitagent and creation of first agent with scaffolding, configuration, and validation. Use when the user is new to gitagent, asks how to get started, wants to install gitagent, set up their first agent, or says 'how do I start?'

manage-skillsSkill

Searches the SkillsMP registry, installs skills locally or globally, creates custom skills with SKILL.md frontmatter, and manages the skill lifecycle. Use when the user wants to find skills, add new capabilities, install a skill, browse available skills, create a custom skill, or manage the skills system.

run-agentSkill

Configures and runs agents with different adapters including Claude, OpenAI, CrewAI, Lyzr, and GitHub Models. Supports local execution, remote git repos, and one-shot prompts. Use when the user wants to run an agent, switch LLM providers, configure adapter settings, or launch agents from git repositories.

compute-ladderSkill

>