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.
Best use case
ancplua-docs is best used when you need a repeatable AI agent workflow instead of a one-off prompt. It is especially useful for teams working in multi. 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.
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.
Users should expect a more consistent workflow output, faster repeated execution, and less time spent rewriting prompts from scratch.
Practical example
Example input
Use the "ancplua-docs" skill to help with this workflow task. Context: 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.
Example output
A structured workflow result with clearer steps, more consistent formatting, and an output that is easier to reuse in the next run.
When to use this skill
- Use this skill when you want a reusable workflow rather than writing the same prompt again and again.
When not to use this skill
- Do not use this when you only need a one-off answer and do not need a reusable workflow.
- Do not use it if you cannot install or maintain the related files, repository context, or supporting tools.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/ancplua-docs/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How ancplua-docs Compares
| Feature / Agent | ancplua-docs | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/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
github-actions-docs
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.
docs-architect
Creates comprehensive technical documentation from existing codebases. Analyzes architecture, design patterns, and implementation details to produce long-form technical manuals and ebooks. Use PROACTIVELY for system documentation, architecture guides, or technical deep-dives.
docstring
Write docstrings for PyTorch functions and methods following PyTorch conventions. Use when writing or updating docstrings in PyTorch code.
docs-write
Write documentation following Metabase's conversational, clear, and user-focused style. Use when creating or editing documentation files (markdown, MDX, etc.).
docs-review
Review documentation changes for compliance with the Metabase writing style guide. Use when reviewing pull requests, files, or diffs containing documentation markdown files.
langgraph-docs
Use this skill for requests related to LangGraph in order to fetch relevant documentation to provide accurate, up-to-date guidance.
gws-docs
Read and write Google Docs.
gws-docs-write
Google Docs: Append text to a document.
enact-docs-guide
LLM guide for creating, publishing, and running Enact tools
pydanticai-docs
Use this skill for requests related to Pydantic AI framework - building agents, tools, dependencies, structured outputs, and model integrations.
fractal-docs-generator
目录级 CLAUDE.md 生成。触发:mkdir、create directory、目录结构变更。
update-docs
ドキュメント更新スキル(仕様書、設計書、README等の更新)