| 1 | # Catalog mapping: GitHub org AI-Guiders → Forge org ai-guiders |
| 2 | # Consumed by Plugin.Repository.Import.Organization.GitHub (forge-zoo-repository-migration). |
| 3 | # Groups are catalog-only; git paths stay ai-guiders/{repo-slug}. |
| 4 | # |
| 5 | # Rule order: first match wins. Unmatched → backup/unclassified (private). |
| 6 | # AMS showcase overlay: FORGE_IMPORT_VISIBILITY_POLICY=inherit + volume [import] inherit. |
| 7 | |
| 8 | [catalog] |
| 9 | forge_org = "ai-guiders" |
| 10 | github_org = "AI-Guiders" |
| 11 | unmatched_catalog = "backup/unclassified" |
| 12 | unmatched_visibility = "private" |
| 13 | skip_repos = [".github"] |
| 14 | |
| 15 | # Product namespace (catalog-only; git paths stay ai-guiders/{repo-slug}): |
| 16 | # forge/spine — host kernel + abstractions |
| 17 | # forge/plugins/mit — open MIT forge plugins (future split repos) |
| 18 | # forge/plugins/commercial — forge-zoo-* SKUs |
| 19 | # Nested folders created before repo assignment (parents first — importer may topo-sort). |
| 20 | ensure_groups = [ |
| 21 | "forge", |
| 22 | "forge/spine", |
| 23 | "forge/plugins", |
| 24 | "forge/plugins/mit", |
| 25 | "forge/plugins/commercial", |
| 26 | "forge/plugins/commercial/unclassified", |
| 27 | "forge/plugins/mit/unclassified", |
| 28 | "showcase", |
| 29 | "showcase/platform", |
| 30 | "showcase/mcp-tools", |
| 31 | "showcase/mcp-tools/dotnet", |
| 32 | "showcase/mcp-tools/dotnet/static-analyzers", |
| 33 | "showcase/mcp-tools/dotnet/debug", |
| 34 | "showcase/mcp-tools/dotnet/build-test", |
| 35 | "showcase/mcp-tools/dotnet/git", |
| 36 | "showcase/mcp-tools/python", |
| 37 | "showcase/mcp-tools/python/runtime", |
| 38 | "showcase/mcp-tools/python/debug", |
| 39 | "showcase/mcp-tools/webcam", |
| 40 | "showcase/mcp-tools/integrations", |
| 41 | "showcase/mcp-tools/unclassified", |
| 42 | "showcase/libraries", |
| 43 | "showcase/libraries/dotnet", |
| 44 | "showcase/libraries/python", |
| 45 | "showcase/libraries/shared", |
| 46 | "showcase/docs", |
| 47 | "showcase/agent-knowledge", |
| 48 | "showcase/agent-knowledge/public", |
| 49 | "backup", |
| 50 | "backup/incubating", |
| 51 | "backup/ops", |
| 52 | "backup/agent-knowledge", |
| 53 | "backup/agent-knowledge/group", |
| 54 | "backup/archive", |
| 55 | "backup/unclassified", |
| 56 | ] |
| 57 | |
| 58 | # --- Explicit (flagship / irregular names) --------------------------------- |
| 59 | |
| 60 | [[catalog.explicit]] |
| 61 | github_name = "agent-forge" |
| 62 | catalog_path = "forge/spine" |
| 63 | visibility = "public" |
| 64 | |
| 65 | [[catalog.explicit]] |
| 66 | github_name = "cascade-ide" |
| 67 | catalog_path = "showcase/platform/cide" |
| 68 | visibility = "public" |
| 69 | |
| 70 | [[catalog.explicit]] |
| 71 | github_name = "RoslynMcp" |
| 72 | forge_slug = "roslyn-mcp" |
| 73 | catalog_path = "showcase/mcp-tools/dotnet/static-analyzers/roslyn" |
| 74 | visibility = "public" |
| 75 | |
| 76 | [[catalog.explicit]] |
| 77 | github_name = "TInvestMcp" |
| 78 | forge_slug = "tinvest-mcp" |
| 79 | catalog_path = "showcase/mcp-tools/integrations/tinvest" |
| 80 | visibility = "private" |
| 81 | |
| 82 | [[catalog.explicit]] |
| 83 | github_name = "casa-ontology-payload" |
| 84 | catalog_path = "backup/incubating/casa" |
| 85 | visibility = "private" |
| 86 | |
| 87 | [[catalog.explicit]] |
| 88 | github_name = "kb" |
| 89 | catalog_path = "backup/agent-knowledge/group" |
| 90 | visibility = "private" |
| 91 | |
| 92 | # personal agent-notes lives on /view/me (u-{login}), not in team org import |
| 93 | |
| 94 | # --- Pattern rules (bulk of org) ------------------------------------------- |
| 95 | |
| 96 | [[catalog.rules]] |
| 97 | id = "forge-zoo-sku" |
| 98 | name_prefix = "forge-zoo-" |
| 99 | catalog_path_template = "forge/plugins/commercial/{tail}" |
| 100 | visibility = "private" |
| 101 | # tail = repo name without "forge-zoo-" → cad, ci-premium, repository-migration, … |
| 102 | |
| 103 | [[catalog.rules]] |
| 104 | id = "forge-plugin-mit" |
| 105 | name_prefix = "forge-plugin-" |
| 106 | catalog_path_template = "forge/plugins/mit/{tail}" |
| 107 | visibility = "public" |
| 108 | # future MIT plugin repos; tail without "forge-plugin-" prefix |
| 109 | |
| 110 | [[catalog.rules]] |
| 111 | id = "platform-public" |
| 112 | name_one_of = [ |
| 113 | "agent-first-learn", |
| 114 | "dotnet-mcp-templates", |
| 115 | "open-agent-registry", |
| 116 | "mcp-tool-manifest", |
| 117 | ] |
| 118 | catalog_path = "showcase/platform" |
| 119 | visibility = "public" |
| 120 | |
| 121 | [[catalog.rules]] |
| 122 | id = "docs-public" |
| 123 | name_one_of = [ |
| 124 | "handbook", |
| 125 | "AI-Guiders.github.io", |
| 126 | "friction-book", |
| 127 | ] |
| 128 | catalog_path = "showcase/docs" |
| 129 | visibility = "public" |
| 130 | |
| 131 | [[catalog.rules]] |
| 132 | id = "kb-public" |
| 133 | name_exact = "kb-public" |
| 134 | catalog_path = "showcase/agent-knowledge/public" |
| 135 | visibility = "public" |
| 136 | |
| 137 | [[catalog.rules]] |
| 138 | id = "dotnet-debug-mcp" |
| 139 | name_exact = "dotnet-debug-mcp" |
| 140 | catalog_path = "showcase/mcp-tools/dotnet/debug" |
| 141 | visibility = "public" |
| 142 | |
| 143 | [[catalog.rules]] |
| 144 | id = "dotnet-build-test-mcp" |
| 145 | name_exact = "dotnet-build-test-mcp" |
| 146 | catalog_path = "showcase/mcp-tools/dotnet/build-test" |
| 147 | visibility = "public" |
| 148 | |
| 149 | [[catalog.rules]] |
| 150 | id = "git-mcp" |
| 151 | name_exact = "git-mcp" |
| 152 | catalog_path = "showcase/mcp-tools/dotnet/git" |
| 153 | visibility = "public" |
| 154 | |
| 155 | [[catalog.rules]] |
| 156 | id = "python-mcp" |
| 157 | name_exact = "python-mcp" |
| 158 | catalog_path = "showcase/mcp-tools/python/runtime" |
| 159 | visibility = "public" |
| 160 | |
| 161 | [[catalog.rules]] |
| 162 | id = "python-debug-mcp" |
| 163 | name_exact = "python-debug-mcp" |
| 164 | catalog_path = "showcase/mcp-tools/python/debug" |
| 165 | visibility = "public" |
| 166 | |
| 167 | [[catalog.rules]] |
| 168 | id = "webcam-mcp" |
| 169 | name_prefix = "webcam-" |
| 170 | name_suffix = "-mcp" |
| 171 | catalog_path = "showcase/mcp-tools/webcam" |
| 172 | visibility = "public" |
| 173 | |
| 174 | [[catalog.rules]] |
| 175 | id = "integration-mcp" |
| 176 | name_one_of = [ |
| 177 | "agent-notes-mcp", |
| 178 | "hybrid-codebase-index", |
| 179 | "relay-message-to-telegram", |
| 180 | ] |
| 181 | catalog_path = "showcase/mcp-tools/integrations" |
| 182 | visibility = "public" |
| 183 | |
| 184 | [[catalog.rules]] |
| 185 | id = "dotnet-libraries" |
| 186 | name_one_of = [ |
| 187 | "dotnet-debug-core", |
| 188 | "dotnet-build-test-core", |
| 189 | "dotnet-build-test-parsers", |
| 190 | "git-mcp-core", |
| 191 | "AIGuiders.DotnetTools", |
| 192 | "AIGuiders.AgentNotes.Core", |
| 193 | ] |
| 194 | catalog_path = "showcase/libraries/dotnet" |
| 195 | visibility = "public" |
| 196 | |
| 197 | [[catalog.rules]] |
| 198 | id = "shared-libraries" |
| 199 | name_one_of = ["hybrid-codebase-index-core", "webcam-mcp-shared"] |
| 200 | catalog_path = "showcase/libraries/shared" |
| 201 | visibility = "public" |
| 202 | |
| 203 | [[catalog.rules]] |
| 204 | id = "python-libraries" |
| 205 | name_one_of = ["pywitdb"] |
| 206 | catalog_path = "showcase/libraries/python" |
| 207 | visibility = "public" |
| 208 | |
| 209 | [[catalog.rules]] |
| 210 | id = "incubating" |
| 211 | name_one_of = ["org-central", "intercom-web", "discussions"] |
| 212 | catalog_path = "backup/incubating" |
| 213 | visibility = "private" |
| 214 | |
| 215 | [[catalog.rules]] |
| 216 | id = "ops-private" |
| 217 | name_one_of = ["cursor-agent-transcripts-archive", "cursor-stack-rules"] |
| 218 | catalog_path = "backup/ops" |
| 219 | visibility = "private" |
| 220 | |
| 221 | [[catalog.rules]] |
| 222 | id = "archive" |
| 223 | name_one_of = ["von-neumann-life-archive"] |
| 224 | catalog_path = "backup/archive" |
| 225 | visibility = "private" |
| 226 | |
| 227 | # --- GitHub topics (optional; when repos are tagged on GH) ----------------- |
| 228 | # Fires only if no prior rule matched. Requires list_repos with topics. |
| 229 | |
| 230 | [[catalog.topic_rules]] |
| 231 | topics_all = ["forge", "forge-showcase"] |
| 232 | catalog_path = "showcase/platform" |
| 233 | visibility = "public" |
| 234 | |
| 235 | [[catalog.topic_rules]] |
| 236 | topics_all = ["forge", "forge-mcp"] |
| 237 | catalog_path = "showcase/mcp-tools/unclassified" |
| 238 | visibility = "public" |
| 239 | |
| 240 | [[catalog.topic_rules]] |
| 241 | topics_all = ["forge", "forge-zoo"] |
| 242 | catalog_path = "forge/plugins/commercial/unclassified" |
| 243 | visibility = "private" |
| 244 | |
| 245 | [[catalog.topic_rules]] |
| 246 | topics_all = ["forge", "forge-plugin"] |
| 247 | catalog_path = "forge/plugins/mit/unclassified" |
| 248 | visibility = "public" |
| 249 | |