用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/rudironsoni/Synaxis --skill dotnet-agent-harness-offline命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
Routes .NET/C# work to domain skills. Loads coding-standards for code paths.
基于 SOC 职业分类
| name | dotnet-agent-harness-offline |
| description | Offline mode with local caching for air-gapped environments |
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"