ソース情報
- リポジトリ
- rudironsoni/Synaxis
- ソースの最終更新活動
- 2026年3月8日 14:59
- 検出された SKILL.md の言語
- 英語
- スター
- 2
- フォーク
- 1
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/rudironsoni/Synaxis --skill dotnet-agent-harness-offlineコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
AI-powered wiki generation for code repositories with commands, agents, and skills
Routes .NET/C# work to domain skills. Loads coding-standards for code paths.
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.
SOC 職業分類に基づく
SKILL.md を表示中
| name | dotnet-agent-harness-offline |
| category | developer-experience |
| subcategory | cli |
| description | Offline mode with local caching for air-gapped environments |
| targets | ["*"] |
| tags | ["harness","offline","cache"] |
| version | 0.0.1 |
| author | dotnet-agent-harness |
| license | MIT |
| invocable | true |
| claudecode | {} |
| opencode | {} |
| codexcli | {"short-description":".NET skill guidance for dotnet-agent-harness-offline"} |
| copilot | {} |
| geminicli | {} |
| antigravity | {} |
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"