用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/rudironsoni/Synaxis --skill dotnet-agent-harness-test-framework命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
Routes .NET/C# work to domain skills. Loads coding-standards for code paths.
基于 SOC 职业分类
| name | dotnet-agent-harness-test-framework |
| description | Comprehensive testing framework for skills |
Validate skill functionality with automated tests.
skill/
├── SKILL.md
└── test-cases/
├── basic.yml
├── edge-cases.yml
└── integration.yml
name: Basic Functionality
description: Test core skill behavior
setup:
- mkdir -p /tmp/test-project
- cd /tmp/test-project
tests:
- name: Should load successfully
input: invoke skill
expected:
status: success
output_contains: 'Skill loaded'
- name: Should reject invalid input
input: invoke skill with "invalid"
expected:
status: error
error_contains: 'Invalid input'
teardown:
- rm -rf /tmp/test-project
dotnet-agent-harness:test <skill> - Run all testsdotnet-agent-harness:test <skill> --filter basic - Filter testsdotnet-agent-harness:test all - Test all skillsdotnet-agent-harness:test all --format junit --output results.xml - Emit CI-friendly reportsstatus: success|erroroutput_contains: "string"output_matches: /regex/file_exists: "path"no_errors - Check stderr empty✓ skill-name
✓ basic functionality (12ms)
✓ edge cases (8ms)
✗ integration test (failed)
Expected: "success"
Got: "error: missing dependency"
Results: 2 passed, 1 failed
- name: Test Skills
run: |
dotnet agent-harness test all --format junit --output results.xml
dotnet-agent-harness:test all --format junit --output results.xml
- name: Upload Results
uses: actions/upload-artifact@v4
with:
name: test-results
path: results.xml
Test fails: Check skill dependencies Timeout: Increase timeout in test config Flaky tests: Use deterministic inputs
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"