.github/skills/dotnet-agent-harness-offline/SKILL.md
Offline mode with local caching for air-gapped environments
npx skillsauth add rudironsoni/sharpclaw dotnet-agent-harness-offlineInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Enable offline operation with local skill and MCP caching.
# Set offline mode
export DOTNET_HARNESS_OFFLINE=true
# Or use flag
rulesync generate --offline
```text
## Cache Structure
```text
.dotnet-agent-harness/
├── cache/
│ ├── skills/ # Cached skill content
│ ├── mcp-responses/ # Cached MCP responses
│ └── registry/ # Cached registry data
└── index.json # Search index
Online Sync (when connected):
dotnet-agent-harness:sync-cache
Offline Operation:
{
"offline": {
"enabled": false,
"cachePath": ".dotnet-agent-harness/cache",
"maxCacheAge": "7d",
"fallbackEnabled": true
}
}
dotnet-agent-harness:sync-cache - Sync cache from remotedotnet-agent-harness:clear-cache - Clear local cachedotnet-agent-harness:cache-status - Show cache statisticsWhen offline:
Cache Miss: Run dotnet-agent-harness:sync-cache Stale Data: Clear and re-sync Large Cache: Exclude heavy
MCP servers
Primary approach: Use Serena symbol operations for efficient code navigation:
serena_find_symbol instead of text searchserena_get_symbols_overview for file organizationserena_find_referencing_symbols for impact analysisserena_replace_symbol_body for clean modificationsWhen to use Serena vs traditional tools:
Example workflow:
# Instead of:
Read: src/Services/OrderService.cs
Grep: "public void ProcessOrder"
# Use:
serena_find_symbol: "OrderService/ProcessOrder"
serena_get_symbols_overview: "src/Services/OrderService.cs"
development
Design patterns and architectural guidance for .NET applications. Navigation skill covering vertical slices, domain modeling, messaging patterns, resilience, caching, and system design. For building scalable, maintainable applications. Keywords: architecture, patterns, vertical slices, domain modeling, messaging, resilience, caching, design patterns
development
Comprehensive testing framework for skills
development
AI-powered skill recommendation engine for dotnet-agent-harness. Analyzes project context and recommends relevant skills based on detected frameworks, packages, and patterns. Triggers on: recommend skill, suggest skills, what skill should I use, skill suggestion, project analysis recommendation.
tools
Skill manifest management for dotnet-agent-harness. Tracks skill dependencies, conflicts, version compatibility, and provides validation and resolution tools. Triggers on: skill manifest, dependency resolution, skill compatibility, version conflicts, build manifest, validate dependencies.