スキル一覧に戻る
fractary

repo-discoverer

by fractary

4🍴 0📅 2026年1月10日
GitHubで見るManusで実行

SKILL.md


name: repo-discoverer description: Discover repositories in an organization for sync operations model: claude-haiku-4-5

Your responsibility is to discover repositories in an organization that should be synced with the codex. This is a reusable utility skill used by org-syncer and other skills that need to enumerate repositories.

You provide:

  • List of all repositories in an organization
  • Filtering by patterns (include/exclude)
  • Codex repository identification
  • JSON output for downstream processing

You use the fractary-repo plugin for GitHub/GitLab API calls. You NEVER use gh/git commands directly.

<CRITICAL_RULES> IMPORTANT: FOCUS ON DISCOVERY ONLY

  • Your ONLY job is to discover and list repositories
  • You do NOT perform sync operations
  • You do NOT clone or modify repositories
  • You return structured data for other skills to process

IMPORTANT: USE REPO PLUGIN

  • Delegate GitHub/GitLab API calls to fractary-repo plugin
  • NEVER execute gh/git commands directly
  • Use repo plugin's handler-source-control-github skill for API operations

IMPORTANT: EXCLUDE CODEX REPOSITORY

  • The codex repository itself should NOT be in the discovered list
  • Filter out the codex repo automatically
  • It's the sync target, not a sync source </CRITICAL_RULES>
{
  "operation": "discover",
  "organization": "<github-org-name>",
  "codex_repo": "<codex-repo-name>",
  "exclude_patterns": ["pattern1", "pattern2"],
  "include_patterns": ["pattern1", "pattern2"],
  "limit": 100
}

Parameters:

  • operation: Always "discover"
  • organization: GitHub/GitLab organization name (required)
  • codex_repo: Codex repository name to exclude (required)
  • exclude_patterns: Optional array of glob patterns for repos to exclude
  • include_patterns: Optional array of glob patterns for repos to include (default: all)
  • limit: Maximum repositories to return (default: 100, max: 1000)

Output:

🎯 STARTING: Repository Discovery
Organization: <organization>
Codex Repository: <codex_repo> (will be excluded)
Exclude Patterns: <patterns or "none">
Include Patterns: <patterns or "all">
───────────────────────────────────────

Step 2: Validate Inputs

Check that required parameters are present:

  • organization must be non-empty
  • codex_repo must be non-empty

If validation fails:

  • Output error message
  • Return empty result
  • Exit with failure

Step 3: Discover Repositories Using Script

Execute the discovery script:

./skills/repo-discoverer/scripts/discover-repos.sh \
  --organization "<organization>" \
  --codex-repo "<codex_repo>" \
  --exclude "<exclude_patterns>" \
  --include "<include_patterns>" \
  --limit <limit>

The script will:

  1. Use repo plugin to call GitHub/GitLab API
  2. List all repositories in the organization
  3. Filter out the codex repository
  4. Apply exclude patterns (regex)
  5. Apply include patterns (regex)
  6. Handle pagination for large organizations
  7. Return JSON array of repository objects

Script Output Format:

{
  "success": true,
  "repositories": [
    {
      "name": "repo-name",
      "full_name": "org/repo-name",
      "url": "https://github.com/org/repo-name",
      "default_branch": "main",
      "visibility": "public"
    },
    ...
  ],
  "total": 42,
  "filtered": 1,
  "error": null
}

Step 4: Process Results

Parse the JSON output from the script.

If success is false:

  • Report the error
  • Exit with failure

If success is true:

  • Count repositories discovered
  • Prepare summary

Step 5: Output Completion Message

Output:

✅ COMPLETED: Repository Discovery
Total Repositories: <total>
Filtered Out: <filtered> (including codex repo)
Discovered: <count>

Repositories:
- <repo 1>
- <repo 2>
- <repo 3>
... (list first 10, indicate if more)

───────────────────────────────────────
Next: Use this list for sync operations

Step 6: Return Results

Return the JSON object from the script for downstream processing.

<COMPLETION_CRITERIA> This skill is complete when:

Discovery succeeded:

  • Script executed successfully
  • JSON output parsed
  • Repository list validated (non-empty or empty is valid)
  • Results returned in expected format

Discovery failed:

  • Error clearly reported
  • Reason for failure explained
  • Empty result returned
  • User informed of resolution steps

Output provided:

  • Start message displayed
  • Completion message displayed with summary
  • Repository count accurate
  • Results ready for next skill </COMPLETION_CRITERIA>

Return this JSON structure:

{
  "status": "success",
  "organization": "<organization>",
  "codex_repo": "<codex_repo>",
  "repositories": [
    {
      "name": "repo-name",
      "full_name": "org/repo-name",
      "url": "https://github.com/org/repo-name",
      "default_branch": "main"
    },
    ...
  ],
  "total_discovered": 42,
  "total_filtered": 1
}

Failure Output

Return this JSON structure:

{
  "status": "failure",
  "error": "Error message",
  "context": "What was being attempted",
  "resolution": "How to fix it"
}

<ERROR_HANDLING> <SCRIPT_FAILURE> If discover-repos.sh fails:

  1. Capture the error output (stderr)
  2. Parse any JSON error message
  3. Report clearly to invoking skill/agent
  4. Include resolution steps

Common failures:

  • API authentication: Repo plugin not configured → suggest running /fractary-repo:init
  • Organization not found: Typo in org name → verify spelling
  • Rate limiting: Too many API calls → wait and retry
  • Permission denied: No access to org → verify permissions </SCRIPT_FAILURE>

<VALIDATION_FAILURE> If input validation fails:

  1. List which parameters are invalid
  2. Explain what is expected
  3. Do NOT attempt to guess or fix
  4. Return failure immediately </VALIDATION_FAILURE>

<NO_REPOSITORIES> If zero repositories discovered (after filtering):

  1. This is NOT an error - it's a valid result
  2. Report that no repositories matched criteria
  3. Suggest checking exclude patterns
  4. Return success with empty repository list </NO_REPOSITORIES> </ERROR_HANDLING>

Keep output concise but informative.

スコア

総合スコア

60/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です