I

isainative.dev

Scan public GitHub repositories for prompts, instructions, agents, skills, hooks, and MCP setup across GitHub Copilot, Claude Code, and OpenAI Codex.

2act
https://isainative.dev/

live · Developer Tools · JSON · API for agents

Tools 2 tools

scan_repositoryact

Scan a GitHub repository for AI-native development primitives and update the visible report. Accepts owner/repository or a full GitHub repository URL.

View tool JSON
{
  "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_repository_formact

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.

View tool JSON
{
  "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"
    ]
  }
}