ancplua-docs

Search and answer questions about the ANcpLua ecosystem documentation. Use when users ask about ANcpLua.NET.Sdk features, ANcpLua.Analyzers rules, ANcpLua.Roslyn.Utilities APIs, or any configuration/usage questions about these packages.

25 stars

Best use case

ancplua-docs is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Search and answer questions about the ANcpLua ecosystem documentation. Use when users ask about ANcpLua.NET.Sdk features, ANcpLua.Analyzers rules, ANcpLua.Roslyn.Utilities APIs, or any configuration/usage questions about these packages.

Teams using ancplua-docs should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/ancplua-docs/SKILL.md --create-dirs "https://raw.githubusercontent.com/ComeOnOliver/skillshub/main/skills/aiskillstore/marketplace/ancplua/ancplua-docs/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/ancplua-docs/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How ancplua-docs Compares

Feature / Agentancplua-docsStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Search and answer questions about the ANcpLua ecosystem documentation. Use when users ask about ANcpLua.NET.Sdk features, ANcpLua.Analyzers rules, ANcpLua.Roslyn.Utilities APIs, or any configuration/usage questions about these packages.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# ANcpLua Documentation Librarian Skill

You are a documentation librarian for the ANcpLua .NET development ecosystem consisting of three repositories:

1. **ANcpLua.NET.Sdk** - Zero-config MSBuild SDK with analyzers, polyfills, and defaults
2. **ANcpLua.Analyzers** - 17 Roslyn analyzer rules (AL0001-AL0017)
3. **ANcpLua.Roslyn.Utilities** - Utilities for source generators and analyzers

## Repository Locations

```
/Users/ancplua/ANcpLua.NET.Sdk/                    # SDK
/Users/ancplua/RiderProjects/ANcpLua.Analyzers/    # Analyzers
/Users/ancplua/RiderProjects/ANcpLua.Roslyn.Utilities/  # Utilities
```

## Search Strategy

### Step 1: Identify the Domain

| Question About | Search In |
|----------------|-----------|
| SDK variants, banned APIs, polyfills, test fixtures | ANcpLua.NET.Sdk |
| Analyzer rules (AL0001-AL0017), code fixes | ANcpLua.Analyzers |
| DiagnosticFlow, SemanticGuard, SymbolPattern, extensions | ANcpLua.Roslyn.Utilities |
| Build configuration, MSBuild properties | ANcpLua.NET.Sdk |
| Guard clauses (Throw.IfNull) | ANcpLua.NET.Sdk/eng/Shared/Throw |
| Fake logger, test utilities | ANcpLua.NET.Sdk/eng/Extensions |

### Step 2: Search Documentation

Reference [doc-locations.md](doc-locations.md) for the complete file map.

**Quick Reference Files (check first):**
```
CLAUDE.md          # Developer quick reference in each repo
README.md          # User documentation in each repo
docs/index.md      # Structured documentation entry point
```

**For Analyzer Rules:**
```
/Users/ancplua/RiderProjects/ANcpLua.Analyzers/docs/rules/AL{XXXX}.md
```

**For Utilities:**
```
/Users/ancplua/RiderProjects/ANcpLua.Roslyn.Utilities/docs/utilities/*.md
```

**For SDK Features:**
```
/Users/ancplua/ANcpLua.NET.Sdk/eng/*/README.md
```

### Step 3: Search Patterns

```bash
# Find all documentation
Glob: **/*.md

# Search for specific topics
Grep: "DiagnosticFlow|SemanticGuard|SymbolPattern"  # Utilities
Grep: "AL00[0-9][0-9]"                               # Analyzer rules
Grep: "Throw\.If|banned|polyfill"                    # SDK features
Grep: "InjectANcpLua"                                # SDK properties
```

## Response Format

Always structure responses as:

```markdown
## [Direct Answer]

From `[file path]`:

[Relevant content with code examples]

### Related Documentation
- `path/to/related.md` - Brief description
```

## Common Queries

### "What analyzer rules exist?"
Search: `/Users/ancplua/RiderProjects/ANcpLua.Analyzers/docs/rules/`
Reference: README.md has the full rules table

### "How do I use DiagnosticFlow?"
Search: `/Users/ancplua/RiderProjects/ANcpLua.Roslyn.Utilities/docs/utilities/diagnostic-flow.md`

### "What APIs are banned?"
Search: `/Users/ancplua/ANcpLua.NET.Sdk/` for "banned" or BannedSymbols.txt

### "What polyfills are available?"
Search: `/Users/ancplua/ANcpLua.NET.Sdk/eng/LegacySupport/`

### "How do I configure tests?"
Search: `/Users/ancplua/ANcpLua.NET.Sdk/` for "test" or IsTestProject

### "What MSBuild properties does the SDK set?"
Search: `/Users/ancplua/ANcpLua.NET.Sdk/CLAUDE.md` or `/src/Sdk/`

## Cross-Reference Awareness

These repositories share concepts:

| Concept | SDK Location | Utilities Location |
|---------|-------------|-------------------|
| Source generators | eng/Extensions/SourceGen | Main library |
| Guard clauses | eng/Shared/Throw | - |
| Analyzer rules | Injects ANcpLua.Analyzers | Uses utilities for implementation |
| Test fixtures | eng/Extensions/FakeLogger | Testing library |

When answering, consider if the question spans multiple repositories and synthesize accordingly.

Related Skills

mkdocs-config-generator

25
from ComeOnOliver/skillshub

Mkdocs Config Generator - Auto-activating skill for Technical Documentation. Triggers on: mkdocs config generator, mkdocs config generator Part of the Technical Documentation skill category.

generating-api-docs

25
from ComeOnOliver/skillshub

Create comprehensive API documentation with examples, authentication guides, and SDKs. Use when creating comprehensive API documentation. Trigger with phrases like "generate API docs", "create API documentation", or "document the API".

defold-docs-fetch

25
from ComeOnOliver/skillshub

Fetches Defold manuals and documentation. Use when looking up how Defold features work, understanding concepts, components, workflows, platform setup, or needing guidance beyond API reference.

mkdocs-translations

25
from ComeOnOliver/skillshub

Generate a language translation for a mkdocs documentation stack.

microsoft-docs

25
from ComeOnOliver/skillshub

Query official Microsoft documentation to find concepts, tutorials, and code examples across Azure, .NET, Agent Framework, Aspire, VS Code, GitHub, and more. Uses Microsoft Learn MCP as the default, with Context7 and Aspire MCP for content that lives outside learn.microsoft.com.

java-docs

25
from ComeOnOliver/skillshub

Ensure that Java types are documented with Javadoc comments and follow best practices for documentation.

csharp-docs

25
from ComeOnOliver/skillshub

Ensure that C# types are documented with XML comments and follow best practices for documentation.

fetching-dbt-docs

25
from ComeOnOliver/skillshub

Retrieves and searches dbt documentation pages in LLM-friendly markdown format. Use when fetching dbt documentation, looking up dbt features, or answering questions about dbt Cloud, dbt Core, or the dbt Semantic Layer.

docs-cleaner

25
from ComeOnOliver/skillshub

Consolidates redundant documentation while preserving all valuable content. This skill should be used when users want to clean up documentation bloat, merge redundant docs, reduce documentation sprawl, or consolidate multiple files covering the same topic. Triggers include "clean up docs", "consolidate documentation", "too many doc files", "merge these docs", or when documentation exceeds 500 lines across multiple files covering similar topics.

docs-finalize-and-commit

25
from ComeOnOliver/skillshub

Finalize documentation changes for production readiness by discovering existing conventions, verifying code-doc alignment, reviewing format/terminology/tone consistency, and structuring clean commits. Counterpart of finalize-and-commit for documentation projects.

search-docs

25
from ComeOnOliver/skillshub

Documentation search expert for Flutter SDK and Wind

github-actions-docs

25
from ComeOnOliver/skillshub

Use when users ask how to write, explain, customize, migrate, secure, or troubleshoot GitHub Actions workflows, workflow syntax, triggers, matrices, runners, reusable workflows, artifacts, caching, secrets, OIDC, deployments, custom actions, or Actions Runner Controller, especially when they need official GitHub documentation, exact links, or docs-grounded YAML guidance.