Why Use This
This skill provides specialized capabilities for parcadei's codebase.
Use Cases
- Developing new features in the parcadei repository
- Refactoring existing code to follow parcadei standards
- Understanding and working with parcadei's codebase structure
Install Guide
2 steps - 1
- 2
Install inside Ananke
Click Install Skill, paste the link below, then press Install.
https://github.com/parcadei/Continuous-Claude-v3/tree/main/.claude/skills/github-search
Skill Snapshot
Auto scan of skill assets. Informational only.
Valid SKILL.md
Checks against SKILL.md specification
Source & Community
Updated At Jan 11, 2026, 08:18 PM
Skill Stats
SKILL.md 48 Lines
Total Files 1
Total Size 0 B
License NOASSERTION
---
name: github-search
description: Search GitHub code, repositories, issues, and PRs via MCP
allowed-tools: [Bash, Read]
---
# GitHub Search Skill
## When to Use
- Search code across repositories
- Find issues or PRs
- Look up repository information
## Instructions
```bash
uv run python -m runtime.harness scripts/mcp/github_search.py \
--type "code" \
--query "your search query"
```
### Parameters
- `--type`: Search type - `code`, `repos`, `issues`, `prs`
- `--query`: Search query (supports GitHub search syntax)
- `--owner`: (optional) Filter by repo owner
- `--repo`: (optional) Filter by repo name
### Examples
```bash
# Search code
uv run python -m runtime.harness scripts/mcp/github_search.py \
--type "code" \
--query "authentication language:python"
# Search issues
uv run python -m runtime.harness scripts/mcp/github_search.py \
--type "issues" \
--query "bug label:critical" \
--owner "anthropics"
```
## MCP Server Required
Requires `github` server in mcp_config.json with GITHUB_PERSONAL_ACCESS_TOKEN.