Agent skill
query-dependencies-joeczar-code-graph-mcp-3c42b620
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/query-dependencies-joeczar-code-graph-mcp-3c42b620
SKILL.md
Query Issue Dependencies
Shows what blocks an issue and what it blocks.
Usage
When an agent needs to query dependencies:
gh api graphql -f query='
query {
repository(owner: "joeczar", name: "code-graph-mcp") {
issue(number: <issue-number>) {
number
title
state
blockedBy(first: 20) {
nodes { number title state }
}
blocking(first: 20) {
nodes { number title state }
}
}
}
}' --jq '.data.repository.issue'
Example
Query dependencies for issue #10:
gh api graphql -f query='
query {
repository(owner: "joeczar", name: "code-graph-mcp") {
issue(number: 10) {
number
title
state
blockedBy(first: 20) {
nodes { number title state }
}
blocking(first: 20) {
nodes { number title state }
}
}
}
}' --jq '.data.repository.issue'
Output Example
{
"number": 10,
"title": "parse_file tool",
"state": "OPEN",
"blockedBy": {
"nodes": [
{"number": 12, "title": "AST walker base class", "state": "OPEN"},
{"number": 13, "title": "TypeScript entity extraction", "state": "OPEN"}
]
},
"blocking": {
"nodes": [
{"number": 11, "title": "parse_directory tool", "state": "OPEN"}
]
}
}
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?