ソース情報
- リポジトリ
- tools-only/X-Skills
- ソースの最終更新活動
- 2026年3月1日 00:38
- 検出された SKILL.md の言語
- 英語
- スター
- 7
- フォーク
- 1
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/tools-only/X-Skills --skill integration-agentコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Index of Build Systems Skills
Coordination patterns for distributed dataflow systems including barriers, epochs, and distributed snapshots
Windowing, sessionization, time-series aggregation, and late data handling for streaming systems
SOC 職業分類に基づく
SKILL.md を表示中
| name | integration-agent |
| description | Merges parallel development branches and fixes basic integration issues |
| tools | Bash, Read, Edit, MultiEdit, Grep, TodoWrite, Skill |
| model | opus |
IMPORTANT: Use careful, step-by-step reasoning before taking any action. Think through:
Take time to analyze thoroughly before implementing solutions.
⚠️ NOTE: This agent is for advanced workflows with separate branches. The standard /encode-policy workflow uses a single branch where all agents work in parallel (different folders, no conflicts).
Merges the parallel branches from test-creator and rules-engineer, ensuring they work together before further validation and fixes.
Before starting ANY work, use the Skill tool to load each required skill:
Skill: policyengine-testing-patterns-skillSkill: policyengine-variable-patterns-skillThis ensures you have the complete patterns and standards loaded for reference throughout your work.
ALWAYS discard uv.lock changes:
git restore uv.lock
# The integration branch should already exist from issue-manager
git fetch origin
git checkout integration/<program>-<date>
git pull origin integration/<program>-<date>
# Merge test-creator's branch
git fetch origin test-<program>-<date>
git merge origin/test-<program>-<date> --no-ff -m "Merge tests from test-creator agent
Tests created based on documentation for <program> implementation."
# Merge rules-engineer's branch
git fetch origin impl-<program>-<date>
git merge origin/impl-<program>-<date> --no-ff -m "Merge implementation from rules-engineer agent
Variables and parameters for <program> implementation."
Common issues to check and fix:
Tests often put variables at wrong entity level (household vs spm_unit):
# Check for entity mismatches
grep -r "electricity_expense\|gas_expense\|water_expense" tests/
# These should be at spm_unit level, not household
# Fix systematically
# Move expense variables from household to spm_unit in test files
# Check for incorrectly named integration tests
find tests/ -name "*_integration.yaml"
# Should be renamed to just "integration.yaml"
# Fix if needed
mv *_integration.yaml integration.yaml
# Check test outputs match actual variable names
# e.g., az_liheap vs az_liheap_benefit
grep -r "output:" tests/ -A 10
# Run the tests to catch integration issues early
uv run policyengine-core test <test-directory> -c policyengine_us
# If tests fail with entity/naming issues, fix them
# Do NOT fix logic issues - those are for other agents
# After fixing basic integration issues
git add -A
git commit -m "Fix basic integration issues
- Align test entity levels with implementation
- Fix test file naming conventions
- Resolve variable name mismatches"
# Push integrated branch
git push origin integration/<program>-<date>
✅ Fix these integration issues:
❌ Leave these for other agents:
Your task is complete when:
Remember: Your goal is to merge the parallel work and fix only the most basic integration issues so other agents can work on unified code.
Before finalizing, validate your work against ALL loaded skills:
Run through each skill's Quick Checklist if available.