live · Developer Tools · JSON · API for agents
Scan a GitHub repository for AI-native development primitives and update the visible report. Accepts owner/repository or a full GitHub repository URL.
{
"name": "scan_repository",
"kind": "act",
"impl": "imperative",
"description": "Scan a GitHub repository for AI-native development primitives and update the visible report. Accepts owner/repository or a full GitHub repository URL.",
"inputSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"repo_url": {
"type": "string",
"description": "GitHub repository to scan. Accept either owner/repository or a full https://github.com/owner/repository URL."
}
},
"required": [
"repo_url"
]
}
}Scan a GitHub repository for AI-native development primitives by submitting the page form and updating the visible report. Accepts owner/repository or a full GitHub URL.
{
"name": "scan_repository_form",
"kind": "act",
"impl": "declarative",
"description": "Scan a GitHub repository for AI-native development primitives by submitting the page form and updating the visible report. Accepts owner/repository or a full GitHub URL.",
"inputSchema": {
"type": "object",
"properties": {
"repo_url": {
"type": "string",
"description": "owner/repository or full URL"
}
},
"required": [
"repo_url"
]
}
}