@aiwg/cli 0.0.0-bootstrap.0 → 2026.7.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +22 -1
- package/bin/aiwg.mjs +349 -0
- package/dist/src/a2a/agent-card.js +145 -0
- package/dist/src/a2a/client.js +411 -0
- package/dist/src/a2a/hitl-cli.js +171 -0
- package/dist/src/a2a/hitl-driver.js +370 -0
- package/dist/src/a2a/hitl.js +181 -0
- package/dist/src/a2a/http.js +193 -0
- package/dist/src/a2a/jcs.js +128 -0
- package/dist/src/a2a/jws.js +187 -0
- package/dist/src/a2a/types.js +24 -0
- package/dist/src/a2a/webhook.js +240 -0
- package/dist/src/activity-log/cli.js +348 -0
- package/dist/src/activity-log/parser.js +81 -0
- package/dist/src/activity-log/types.js +50 -0
- package/dist/src/agents/agent-deployer.js +367 -0
- package/dist/src/agents/agent-packager.js +271 -0
- package/dist/src/agents/agent-validator.js +271 -0
- package/dist/src/agents/grounding/knowledge-base.js +161 -0
- package/dist/src/agents/grounding/types.js +12 -0
- package/dist/src/agents/index.js +10 -0
- package/dist/src/agents/packaged-agent-inventory.js +75 -0
- package/dist/src/agents/types.js +7 -0
- package/dist/src/api/index.d.ts +10 -0
- package/dist/src/api/index.js +10 -0
- package/dist/src/artifacts/address-parser.js +73 -0
- package/dist/src/artifacts/audit/cli.js +183 -0
- package/dist/src/artifacts/audit/drift.js +122 -0
- package/dist/src/artifacts/audit/types.js +12 -0
- package/dist/src/artifacts/backends/graphology-backend.js +160 -0
- package/dist/src/artifacts/backends/json-backend.js +129 -0
- package/dist/src/artifacts/backends/sqlite-backend.js +199 -0
- package/dist/src/artifacts/browser-export.js +622 -0
- package/dist/src/artifacts/capability-resolver.js +94 -0
- package/dist/src/artifacts/checksum-manifest.js +91 -0
- package/dist/src/artifacts/citation-parser.js +162 -0
- package/dist/src/artifacts/cli.js +1486 -0
- package/dist/src/artifacts/corpus-tools/citation-densify.js +311 -0
- package/dist/src/artifacts/corpus-tools/cli.js +393 -0
- package/dist/src/artifacts/corpus-tools/corpus-graph.js +225 -0
- package/dist/src/artifacts/corpus-tools/curator.js +186 -0
- package/dist/src/artifacts/corpus-tools/discovery-log.js +70 -0
- package/dist/src/artifacts/corpus-tools/funder-network.js +141 -0
- package/dist/src/artifacts/corpus-tools/induction-audit.js +233 -0
- package/dist/src/artifacts/corpus-tools/integrity-scan.js +202 -0
- package/dist/src/artifacts/corpus-tools/profile-communities.js +166 -0
- package/dist/src/artifacts/corpus-tools/profile-edges.js +72 -0
- package/dist/src/artifacts/corpus-tools/profile-embed.js +113 -0
- package/dist/src/artifacts/corpus-tools/profile-generate-fm.js +167 -0
- package/dist/src/artifacts/corpus-tools/profile-generate.js +181 -0
- package/dist/src/artifacts/corpus-tools/profile-metrics.js +98 -0
- package/dist/src/artifacts/corpus-tools/profile-status.js +86 -0
- package/dist/src/artifacts/corpus-tools/profile-temporal.js +139 -0
- package/dist/src/artifacts/corpus-tools/radar-init.js +93 -0
- package/dist/src/artifacts/corpus-tools/radar-report.js +118 -0
- package/dist/src/artifacts/corpus-tools/radar-shared.js +189 -0
- package/dist/src/artifacts/corpus-tools/radar-status.js +68 -0
- package/dist/src/artifacts/corpus-tools/sidecar-lint.js +233 -0
- package/dist/src/artifacts/corpus-tools/sidecar-repair.js +277 -0
- package/dist/src/artifacts/corpus-tools/snapshot.js +591 -0
- package/dist/src/artifacts/corpus-tools/source-types.js +164 -0
- package/dist/src/artifacts/corpus-tools/vision-extract.js +243 -0
- package/dist/src/artifacts/corpus-views/build.js +126 -0
- package/dist/src/artifacts/corpus-views/corpus-config.js +124 -0
- package/dist/src/artifacts/corpus-views/ref-parser.js +437 -0
- package/dist/src/artifacts/corpus-views/renderers.js +353 -0
- package/dist/src/artifacts/corpus-views/taxonomies.js +131 -0
- package/dist/src/artifacts/dep-graph.js +173 -0
- package/dist/src/artifacts/discover-facets.js +375 -0
- package/dist/src/artifacts/embedding-index.js +354 -0
- package/dist/src/artifacts/enrichment/cli.js +240 -0
- package/dist/src/artifacts/enrichment/prompt.js +47 -0
- package/dist/src/artifacts/enrichment/store.js +90 -0
- package/dist/src/artifacts/enrichment/types.js +12 -0
- package/dist/src/artifacts/fortemi-core-query-adapter.js +475 -0
- package/dist/src/artifacts/fortemi-core-sync.js +251 -0
- package/dist/src/artifacts/fortemi-shard-export.js +44 -0
- package/dist/src/artifacts/fulltext.js +108 -0
- package/dist/src/artifacts/graph-backend.js +51 -0
- package/dist/src/artifacts/graph-query.js +247 -0
- package/dist/src/artifacts/hybrid-query.js +225 -0
- package/dist/src/artifacts/index-builder.js +1089 -0
- package/dist/src/artifacts/index-reader.js +112 -0
- package/dist/src/artifacts/index-status.js +193 -0
- package/dist/src/artifacts/legacy-index-migration.js +169 -0
- package/dist/src/artifacts/move.js +154 -0
- package/dist/src/artifacts/operational-state.js +239 -0
- package/dist/src/artifacts/prebuilt-build-lock.js +49 -0
- package/dist/src/artifacts/query-engine.js +1955 -0
- package/dist/src/artifacts/source-graph.js +529 -0
- package/dist/src/artifacts/stats.js +169 -0
- package/dist/src/artifacts/types.js +606 -0
- package/dist/src/artifacts/views/cli.js +293 -0
- package/dist/src/artifacts/views/definition.js +170 -0
- package/dist/src/artifacts/views/store.js +149 -0
- package/dist/src/artifacts/views/types.js +8 -0
- package/dist/src/artifacts/watcher.js +255 -0
- package/dist/src/catalog/builtin-models.json +636 -0
- package/dist/src/catalog/cli.js +228 -0
- package/dist/src/catalog/cli.mjs +289 -0
- package/dist/src/catalog/index.js +15 -0
- package/dist/src/catalog/loader.js +217 -0
- package/dist/src/catalog/loader.mjs +251 -0
- package/dist/src/catalog/sources.json +41 -0
- package/dist/src/catalog/types.js +8 -0
- package/dist/src/channel/manager.mjs +504 -0
- package/dist/src/cli/agent-spawn.js +178 -0
- package/dist/src/cli/cli-extension-loader.js +245 -0
- package/dist/src/cli/command-log.js +275 -0
- package/dist/src/cli/config-loader.js +232 -0
- package/dist/src/cli/env.js +82 -0
- package/dist/src/cli/errors.js +150 -0
- package/dist/src/cli/find-package-root.js +40 -0
- package/dist/src/cli/git-hooks.js +250 -0
- package/dist/src/cli/handlers/agentcard.js +206 -0
- package/dist/src/cli/handlers/artifacts.js +76 -0
- package/dist/src/cli/handlers/best-practices-audit.js +280 -0
- package/dist/src/cli/handlers/cockpit.js +137 -0
- package/dist/src/cli/handlers/command-log.js +37 -0
- package/dist/src/cli/handlers/daemon.js +59 -0
- package/dist/src/cli/handlers/diagnose.js +300 -0
- package/dist/src/cli/handlers/execution-mode.js +105 -0
- package/dist/src/cli/handlers/feedback.js +341 -0
- package/dist/src/cli/handlers/help.js +147 -0
- package/dist/src/cli/handlers/index.js +302 -0
- package/dist/src/cli/handlers/init.js +179 -0
- package/dist/src/cli/handlers/install.js +129 -0
- package/dist/src/cli/handlers/issues.js +46 -0
- package/dist/src/cli/handlers/lint.js +42 -0
- package/dist/src/cli/handlers/local-executor.js +315 -0
- package/dist/src/cli/handlers/marketplace.js +168 -0
- package/dist/src/cli/handlers/mc.js +1010 -0
- package/dist/src/cli/handlers/models.js +352 -0
- package/dist/src/cli/handlers/packages.js +155 -0
- package/dist/src/cli/handlers/ralph-launcher.js +717 -0
- package/dist/src/cli/handlers/ralph.js +575 -0
- package/dist/src/cli/handlers/refresh.js +432 -0
- package/dist/src/cli/handlers/regenerate.js +336 -0
- package/dist/src/cli/handlers/repo-access.js +109 -0
- package/dist/src/cli/handlers/run.js +165 -0
- package/dist/src/cli/handlers/runtime-info.js +301 -0
- package/dist/src/cli/handlers/sandbox.js +197 -0
- package/dist/src/cli/handlers/scaffolding.js +149 -0
- package/dist/src/cli/handlers/script-runner.js +121 -0
- package/dist/src/cli/handlers/sdlc-accelerate.js +148 -0
- package/dist/src/cli/handlers/serve.js +1835 -0
- package/dist/src/cli/handlers/session.js +348 -0
- package/dist/src/cli/handlers/setup.js +440 -0
- package/dist/src/cli/handlers/skill-lint.js +367 -0
- package/dist/src/cli/handlers/skill-usage.js +74 -0
- package/dist/src/cli/handlers/steward.js +567 -0
- package/dist/src/cli/handlers/subcommands.js +1702 -0
- package/dist/src/cli/handlers/team.js +337 -0
- package/dist/src/cli/handlers/types.js +11 -0
- package/dist/src/cli/handlers/use.js +2772 -0
- package/dist/src/cli/handlers/utilities.js +703 -0
- package/dist/src/cli/handlers/version.js +134 -0
- package/dist/src/cli/handlers/workspace-context.js +93 -0
- package/dist/src/cli/handlers/workspace.js +126 -0
- package/dist/src/cli/help-generator.js +178 -0
- package/dist/src/cli/hooks/builtin/activity-log-hook.js +126 -0
- package/dist/src/cli/hooks/executor.js +96 -0
- package/dist/src/cli/hooks/index.js +15 -0
- package/dist/src/cli/hooks/registry.js +143 -0
- package/dist/src/cli/hooks/types.js +13 -0
- package/dist/src/cli/log.js +492 -0
- package/dist/src/cli/project-isolation/detect.js +70 -0
- package/dist/src/cli/project-isolation/index.js +7 -0
- package/dist/src/cli/project-isolation/signals.js +17 -0
- package/dist/src/cli/project-isolation/warning.js +102 -0
- package/dist/src/cli/prompt-utils.js +155 -0
- package/dist/src/cli/provider-deployment-plan.js +126 -0
- package/dist/src/cli/provider-resolution.js +119 -0
- package/dist/src/cli/router.js +305 -0
- package/dist/src/cli/scope-resolver.js +392 -0
- package/dist/src/cli/skill-usage.js +616 -0
- package/dist/src/cli/ui.js +224 -0
- package/dist/src/cli/watch-service.js +203 -0
- package/dist/src/cli/workflow-orchestrator.js +478 -0
- package/dist/src/cli/workspace-signals.js +321 -0
- package/dist/src/community/footer.js +14 -0
- package/dist/src/community/links.js +123 -0
- package/dist/src/community/milestones.js +46 -0
- package/dist/src/community/nudge-policy.js +93 -0
- package/dist/src/config/aiwg-config.js +883 -0
- package/dist/src/config/cli.js +703 -0
- package/dist/src/config/gitignore.js +156 -0
- package/dist/src/config/project-artifacts.js +76 -0
- package/dist/src/config/user-config.js +428 -0
- package/dist/src/config/user-registry.js +127 -0
- package/dist/src/config/workspace.js +276 -0
- package/dist/src/contributors/detect.js +39 -0
- package/dist/src/contributors/discover.js +172 -0
- package/dist/src/contributors/heuristic.js +186 -0
- package/dist/src/contributors/index.js +11 -0
- package/dist/src/contributors/types.js +13 -0
- package/dist/src/contributors/validation.js +116 -0
- package/dist/src/data/community.schema.json +43 -0
- package/dist/src/data/community.yaml +16 -0
- package/dist/src/extensions/capability-index.js +270 -0
- package/dist/src/extensions/claude-hooks-installer.js +268 -0
- package/dist/src/extensions/commands/definitions.js +3485 -0
- package/dist/src/extensions/deployment-registration.js +463 -0
- package/dist/src/extensions/index.js +22 -0
- package/dist/src/extensions/loader.js +132 -0
- package/dist/src/extensions/managed-marker.js +100 -0
- package/dist/src/extensions/manifest.js +196 -0
- package/dist/src/extensions/project-local-activity.js +114 -0
- package/dist/src/extensions/project-local-discovery.js +261 -0
- package/dist/src/extensions/project-local-doctor.js +281 -0
- package/dist/src/extensions/project-local-gitignore.js +176 -0
- package/dist/src/extensions/project-local-paths.js +121 -0
- package/dist/src/extensions/project-local-promote.js +218 -0
- package/dist/src/extensions/project-local-remove.js +373 -0
- package/dist/src/extensions/project-local-scaffold.js +252 -0
- package/dist/src/extensions/project-quickref.js +291 -0
- package/dist/src/extensions/registry.js +368 -0
- package/dist/src/extensions/shadow-resolver.js +271 -0
- package/dist/src/extensions/types.js +86 -0
- package/dist/src/extensions/upstream-registry.js +195 -0
- package/dist/src/extensions/validation.js +631 -0
- package/dist/src/features/catalog.js +88 -0
- package/dist/src/features/cli.js +197 -0
- package/dist/src/features/installer.js +57 -0
- package/dist/src/features/paths.js +14 -0
- package/dist/src/features/runtime.js +21 -0
- package/dist/src/features/status.js +134 -0
- package/dist/src/hooks/laziness-detection.js +532 -0
- package/dist/src/intake/git-history-analyzer.js +486 -0
- package/dist/src/intake/index.js +9 -0
- package/dist/src/issues/cli.js +327 -0
- package/dist/src/issues/index.js +5 -0
- package/dist/src/issues/live.js +154 -0
- package/dist/src/issues/local.js +666 -0
- package/dist/src/issues/sync.js +143 -0
- package/dist/src/issues/types.js +2 -0
- package/dist/src/issues/workflows.js +164 -0
- package/dist/src/kb/cli.js +173 -0
- package/dist/src/lint/cli.js +171 -0
- package/dist/src/lint/loader.js +225 -0
- package/dist/src/lint/reporters.js +141 -0
- package/dist/src/lint/runner.js +364 -0
- package/dist/src/lint/types.js +10 -0
- package/dist/src/marketplace/cache.js +110 -0
- package/dist/src/marketplace/identifier.js +63 -0
- package/dist/src/marketplace/registry.js +36 -0
- package/dist/src/marketplace/sources/clawhub.js +53 -0
- package/dist/src/marketplace/sources/git.js +45 -0
- package/dist/src/marketplace/types.js +9 -0
- package/dist/src/mcp/adapters/codex-runtime.js +224 -0
- package/dist/src/mcp/cli.mjs +1197 -0
- package/dist/src/mcp/elicitation.mjs +149 -0
- package/dist/src/mcp/helpers.mjs +287 -0
- package/dist/src/mcp/index.mjs +11 -0
- package/dist/src/mcp/profiles.js +263 -0
- package/dist/src/mcp/profiles.mjs +360 -0
- package/dist/src/mcp/registry.js +376 -0
- package/dist/src/mcp/registry.mjs +387 -0
- package/dist/src/mcp/server.mjs +633 -0
- package/dist/src/mcp/test-simple.mjs +271 -0
- package/dist/src/mcp/tools/command-run.mjs +101 -0
- package/dist/src/mcp/tools/discovery.mjs +291 -0
- package/dist/src/mcp/tools/interaction.mjs +87 -0
- package/dist/src/mcp/tools/orchestration.mjs +320 -0
- package/dist/src/mcp/tools/subsystems.mjs +640 -0
- package/dist/src/memory/cli.js +166 -0
- package/dist/src/memory/project-registry.js +282 -0
- package/dist/src/metrics/artifact-metrics.js +184 -0
- package/dist/src/metrics/context-budget.js +174 -0
- package/dist/src/metrics/token-counter.js +133 -0
- package/dist/src/models/config-loader.js +228 -0
- package/dist/src/models/index.js +22 -0
- package/dist/src/models/model-capabilities.v1.json +120 -0
- package/dist/src/models/model-catalog.v1.json +96 -0
- package/dist/src/models/model-discovery.js +521 -0
- package/dist/src/models/provider-models.js +73 -0
- package/dist/src/models/provider-policy.js +273 -0
- package/dist/src/models/resolver.js +245 -0
- package/dist/src/models/router.js +70 -0
- package/dist/src/models/types.js +8 -0
- package/dist/src/models/wrapper-deployment.js +178 -0
- package/dist/src/models/wrapper-route.js +54 -0
- package/dist/src/ops/cli.js +268 -0
- package/dist/src/ops/registry.js +623 -0
- package/dist/src/packages/adapters/clawhub.js +113 -0
- package/dist/src/packages/adapters/git.js +153 -0
- package/dist/src/packages/adapters/gitea.js +93 -0
- package/dist/src/packages/adapters/github.js +69 -0
- package/dist/src/packages/adapters/local-cache.js +89 -0
- package/dist/src/packages/package-registry.js +143 -0
- package/dist/src/packages/registry.js +238 -0
- package/dist/src/packages/types.js +11 -0
- package/dist/src/plugin/cross-framework-ops.js +475 -0
- package/dist/src/plugin/framework-config-loader.js +235 -0
- package/dist/src/plugin/framework-detector.js +186 -0
- package/dist/src/plugin/framework-isolator.js +341 -0
- package/dist/src/plugin/framework-migration.js +371 -0
- package/dist/src/plugin/metadata-validator.js +906 -0
- package/dist/src/plugin/plugin-installer.js +436 -0
- package/dist/src/plugin/plugin-status.js +369 -0
- package/dist/src/plugin/plugin-uninstaller.js +473 -0
- package/dist/src/plugin/registry-validator.js +344 -0
- package/dist/src/plugin/skill-command-translator.js +415 -0
- package/dist/src/plugin/workspace-creator.js +189 -0
- package/dist/src/plugin/workspace-migrator.js +821 -0
- package/dist/src/policy/authorization.js +390 -0
- package/dist/src/policy/repo-access.js +215 -0
- package/dist/src/provenance/cli.js +16 -0
- package/dist/src/providers/capability-matrix.js +300 -0
- package/dist/src/providers/capability-matrix.yaml +514 -0
- package/dist/src/providers/provider-definitions.js +977 -0
- package/dist/src/providers/provider-definitions.mjs +159 -0
- package/dist/src/providers/provider-inventory.js +169 -0
- package/dist/src/quality/feedback-ab.js +174 -0
- package/dist/src/quality/feedback-collector.js +176 -0
- package/dist/src/quality/feedback-tracker.js +123 -0
- package/dist/src/quality/patterns/adr.json +24 -0
- package/dist/src/quality/patterns/sad.json +24 -0
- package/dist/src/quality/patterns/test-plan.json +24 -0
- package/dist/src/quality/patterns/use-case.json +24 -0
- package/dist/src/quality/scoring.js +157 -0
- package/dist/src/reflections/cli.js +15 -0
- package/dist/src/release/plan.js +139 -0
- package/dist/src/research/cache/manager.js +227 -0
- package/dist/src/research/clients/arxiv.js +156 -0
- package/dist/src/research/clients/base.js +197 -0
- package/dist/src/research/clients/crossref.js +112 -0
- package/dist/src/research/clients/semantic-scholar.js +126 -0
- package/dist/src/research/clients/unpaywall.js +87 -0
- package/dist/src/research/index.js +14 -0
- package/dist/src/research/query-cli.js +336 -0
- package/dist/src/research/services/acquisition.js +313 -0
- package/dist/src/research/services/archival.js +225 -0
- package/dist/src/research/services/citation.js +279 -0
- package/dist/src/research/services/discovery.js +243 -0
- package/dist/src/research/services/documentation.js +269 -0
- package/dist/src/research/services/index.js +14 -0
- package/dist/src/research/services/provenance.js +279 -0
- package/dist/src/research/services/quality.js +370 -0
- package/dist/src/research/services/types.js +7 -0
- package/dist/src/research/storage-cli.js +20 -0
- package/dist/src/research/types.js +47 -0
- package/dist/src/resources/index.d.ts +2 -0
- package/dist/src/resources/index.js +2 -0
- package/dist/src/resources/web-release.d.ts +89 -0
- package/dist/src/resources/web-release.js +886 -0
- package/dist/src/rlm/cache/cli.js +162 -0
- package/dist/src/rlm/cache/hash.js +35 -0
- package/dist/src/rlm/cache/store.js +170 -0
- package/dist/src/rlm/cache/types.js +8 -0
- package/dist/src/rlm/cli.js +650 -0
- package/dist/src/serve/a2a-terminal-observer.js +120 -0
- package/dist/src/serve/agent-router.js +205 -0
- package/dist/src/serve/dispatch-router.js +171 -0
- package/dist/src/serve/executor-registry.js +715 -0
- package/dist/src/serve/mission-conductor.js +177 -0
- package/dist/src/serve/orchestrator-adapter.js +113 -0
- package/dist/src/serve/orchestrator-override.js +94 -0
- package/dist/src/serve/orchestrator-pty.js +133 -0
- package/dist/src/serve/pty-bridge.js +799 -0
- package/dist/src/serve/sandbox-registry.js +832 -0
- package/dist/src/serve/screen-reader.js +228 -0
- package/dist/src/serve/stack-adapters.js +68 -0
- package/dist/src/serve/telemetry.js +143 -0
- package/dist/src/skills/adapters/clawhub.js +250 -0
- package/dist/src/skills/adapters/local.js +335 -0
- package/dist/src/skills/adapters/openclaw.js +316 -0
- package/dist/src/skills/cli.js +334 -0
- package/dist/src/skills/registry.js +117 -0
- package/dist/src/skills/run.js +259 -0
- package/dist/src/skills/runtime.js +94 -0
- package/dist/src/skills/types.js +10 -0
- package/dist/src/smiths/agentsmith/demo.js +116 -0
- package/dist/src/smiths/agentsmith/examples.js +300 -0
- package/dist/src/smiths/agentsmith/generator.js +503 -0
- package/dist/src/smiths/agentsmith/index.js +11 -0
- package/dist/src/smiths/agentsmith/types.js +8 -0
- package/dist/src/smiths/commandsmith/example.js +220 -0
- package/dist/src/smiths/commandsmith/generator.js +288 -0
- package/dist/src/smiths/commandsmith/index.js +41 -0
- package/dist/src/smiths/commandsmith/templates.js +296 -0
- package/dist/src/smiths/commandsmith/types.js +7 -0
- package/dist/src/smiths/context-pipeline/aiwg-md.js +104 -0
- package/dist/src/smiths/context-pipeline/allowlist.js +195 -0
- package/dist/src/smiths/context-pipeline/claude-hook.js +127 -0
- package/dist/src/smiths/context-pipeline/discovery.js +187 -0
- package/dist/src/smiths/context-pipeline/external-links-section.js +49 -0
- package/dist/src/smiths/context-pipeline/finalization.js +147 -0
- package/dist/src/smiths/context-pipeline/generator.js +477 -0
- package/dist/src/smiths/context-pipeline/index.js +30 -0
- package/dist/src/smiths/context-pipeline/legacy-inject.js +103 -0
- package/dist/src/smiths/context-pipeline/managed-hook.js +95 -0
- package/dist/src/smiths/context-pipeline/overflow.js +212 -0
- package/dist/src/smiths/context-pipeline/parallelism-section.js +94 -0
- package/dist/src/smiths/context-pipeline/provider-policy.js +64 -0
- package/dist/src/smiths/context-pipeline/sanitizer.js +93 -0
- package/dist/src/smiths/context-pipeline/types.js +23 -0
- package/dist/src/smiths/context-pipeline/workspace-context.js +988 -0
- package/dist/src/smiths/hook-bridge/codex-translator.js +129 -0
- package/dist/src/smiths/hook-bridge/copilot-translator.js +64 -0
- package/dist/src/smiths/hook-bridge/factory-translator.js +43 -0
- package/dist/src/smiths/hook-bridge/hermes-translator.js +88 -0
- package/dist/src/smiths/hook-bridge/index.js +79 -0
- package/dist/src/smiths/hook-bridge/loader.js +116 -0
- package/dist/src/smiths/hook-bridge/shim.js +89 -0
- package/dist/src/smiths/hook-bridge/types.js +31 -0
- package/dist/src/smiths/index.js +39 -0
- package/dist/src/smiths/mcpsmith/analyzers/cli-analyzer.js +390 -0
- package/dist/src/smiths/mcpsmith/example.js +119 -0
- package/dist/src/smiths/mcpsmith/generator.js +236 -0
- package/dist/src/smiths/mcpsmith/index.js +17 -0
- package/dist/src/smiths/mcpsmith/types.js +10 -0
- package/dist/src/smiths/platform-paths.js +101 -0
- package/dist/src/smiths/skillsmith/codex-sidecar.js +85 -0
- package/dist/src/smiths/skillsmith/collision-detector.js +249 -0
- package/dist/src/smiths/skillsmith/demo.js +83 -0
- package/dist/src/smiths/skillsmith/examples.js +161 -0
- package/dist/src/smiths/skillsmith/generator.js +316 -0
- package/dist/src/smiths/skillsmith/index.js +12 -0
- package/dist/src/smiths/skillsmith/namespace-adapter.js +180 -0
- package/dist/src/smiths/skillsmith/platform-resolver.js +157 -0
- package/dist/src/smiths/skillsmith/types.js +9 -0
- package/dist/src/smiths/toolsmith/index.js +10 -0
- package/dist/src/smiths/toolsmith/runtime-discovery.mjs +710 -0
- package/dist/src/smiths/toolsmith/types.js +8 -0
- package/dist/src/storage/backends/fortemi.js +227 -0
- package/dist/src/storage/backends/fs.js +134 -0
- package/dist/src/storage/backends/logseq.js +309 -0
- package/dist/src/storage/backends/obsidian.js +233 -0
- package/dist/src/storage/cli.js +468 -0
- package/dist/src/storage/config.js +272 -0
- package/dist/src/storage/index.js +108 -0
- package/dist/src/storage/subsystem-cli.js +201 -0
- package/dist/src/storage/types.js +33 -0
- package/dist/src/testing/corpus/corpus-builder.js +383 -0
- package/dist/src/testing/corpus/ground-truth-manager.js +460 -0
- package/dist/src/testing/corpus/index.js +10 -0
- package/dist/src/testing/fixtures/index.js +9 -0
- package/dist/src/testing/fixtures/test-data-factory.js +472 -0
- package/dist/src/testing/generators/index.js +11 -0
- package/dist/src/testing/generators/test-case-generator.js +393 -0
- package/dist/src/testing/generators/test-code-generator.js +384 -0
- package/dist/src/testing/generators/use-case-parser.js +325 -0
- package/dist/src/testing/index.js +11 -0
- package/dist/src/tracker/capability-protocol.js +118 -0
- package/dist/src/update/checker.mjs +396 -0
- package/dist/src/update/notifier.mjs +235 -0
- package/dist/src/writing/content-diversifier.js +804 -0
- package/dist/src/writing/example-generator.js +959 -0
- package/dist/src/writing/example-templates.js +99 -0
- package/dist/src/writing/pattern-library.js +486 -0
- package/dist/src/writing/patterns/banned-phrases.json +4413 -0
- package/dist/src/writing/patterns/formulaic-structures.json +1300 -0
- package/dist/src/writing/patterns/generic-adjectives.json +1510 -0
- package/dist/src/writing/patterns/hedging-language.json +2096 -0
- package/dist/src/writing/patterns/transition-words.json +1285 -0
- package/dist/src/writing/patterns/weak-verbs.json +1112 -0
- package/dist/src/writing/prompt-optimizer.js +660 -0
- package/dist/src/writing/prompt-templates.js +583 -0
- package/dist/src/writing/scoring-config-loader.js +168 -0
- package/dist/src/writing/validation-engine.js +595 -0
- package/dist/src/writing/validation-rules.js +380 -0
- package/dist/src/writing/voice-analyzer.js +439 -0
- package/dist/src/writing/voice-calibration.js +661 -0
- package/dist/src/writing/voice-profiles.json +588 -0
- package/package.json +65 -9
|
@@ -0,0 +1,636 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "aiwg-builtin-models.json",
|
|
4
|
+
"title": "AIWG Built-in Model Catalog",
|
|
5
|
+
"description": "Core models shipped with AIWG, manually curated and verified",
|
|
6
|
+
"models": {
|
|
7
|
+
"claude-opus-4-6": {
|
|
8
|
+
"provider": "anthropic",
|
|
9
|
+
"displayName": "Claude Opus 4.6",
|
|
10
|
+
"releaseDate": "2025-11-01",
|
|
11
|
+
"status": "active",
|
|
12
|
+
"deprecated": false,
|
|
13
|
+
"deprecationDate": null,
|
|
14
|
+
"successorModel": null,
|
|
15
|
+
"capabilities": {
|
|
16
|
+
"contextWindow": 200000,
|
|
17
|
+
"maxOutputTokens": 8192,
|
|
18
|
+
"vision": true,
|
|
19
|
+
"toolUse": true,
|
|
20
|
+
"streaming": true,
|
|
21
|
+
"reasoning": "excellent",
|
|
22
|
+
"coding": "excellent",
|
|
23
|
+
"speed": "fair"
|
|
24
|
+
},
|
|
25
|
+
"pricing": {
|
|
26
|
+
"inputPer1kTokens": 0.015,
|
|
27
|
+
"outputPer1kTokens": 0.075,
|
|
28
|
+
"currency": "USD",
|
|
29
|
+
"lastUpdated": "2025-12-01"
|
|
30
|
+
},
|
|
31
|
+
"aliases": ["opus", "opus-4.6", "claude-opus"],
|
|
32
|
+
"tags": ["flagship", "reasoning", "long-context"],
|
|
33
|
+
"source": "builtin",
|
|
34
|
+
"lastVerified": "2025-12-12"
|
|
35
|
+
},
|
|
36
|
+
"claude-sonnet-4-6": {
|
|
37
|
+
"provider": "anthropic",
|
|
38
|
+
"displayName": "Claude Sonnet 4.6",
|
|
39
|
+
"releaseDate": "2025-09-29",
|
|
40
|
+
"status": "active",
|
|
41
|
+
"deprecated": false,
|
|
42
|
+
"deprecationDate": null,
|
|
43
|
+
"successorModel": null,
|
|
44
|
+
"capabilities": {
|
|
45
|
+
"contextWindow": 200000,
|
|
46
|
+
"maxOutputTokens": 8192,
|
|
47
|
+
"vision": true,
|
|
48
|
+
"toolUse": true,
|
|
49
|
+
"streaming": true,
|
|
50
|
+
"reasoning": "excellent",
|
|
51
|
+
"coding": "excellent",
|
|
52
|
+
"speed": "good"
|
|
53
|
+
},
|
|
54
|
+
"pricing": {
|
|
55
|
+
"inputPer1kTokens": 0.003,
|
|
56
|
+
"outputPer1kTokens": 0.015,
|
|
57
|
+
"currency": "USD",
|
|
58
|
+
"lastUpdated": "2025-12-01"
|
|
59
|
+
},
|
|
60
|
+
"aliases": ["sonnet", "sonnet-4.6", "claude-sonnet"],
|
|
61
|
+
"tags": ["balanced", "coding", "long-context"],
|
|
62
|
+
"source": "builtin",
|
|
63
|
+
"lastVerified": "2025-12-12"
|
|
64
|
+
},
|
|
65
|
+
"claude-sonnet-4-20250514": {
|
|
66
|
+
"provider": "anthropic",
|
|
67
|
+
"displayName": "Claude Sonnet 4",
|
|
68
|
+
"releaseDate": "2025-05-14",
|
|
69
|
+
"status": "active",
|
|
70
|
+
"deprecated": false,
|
|
71
|
+
"deprecationDate": null,
|
|
72
|
+
"successorModel": null,
|
|
73
|
+
"capabilities": {
|
|
74
|
+
"contextWindow": 200000,
|
|
75
|
+
"maxOutputTokens": 8192,
|
|
76
|
+
"vision": true,
|
|
77
|
+
"toolUse": true,
|
|
78
|
+
"streaming": true,
|
|
79
|
+
"reasoning": "good",
|
|
80
|
+
"coding": "excellent",
|
|
81
|
+
"speed": "good"
|
|
82
|
+
},
|
|
83
|
+
"pricing": {
|
|
84
|
+
"inputPer1kTokens": 0.003,
|
|
85
|
+
"outputPer1kTokens": 0.015,
|
|
86
|
+
"currency": "USD",
|
|
87
|
+
"lastUpdated": "2025-12-01"
|
|
88
|
+
},
|
|
89
|
+
"aliases": ["sonnet-4"],
|
|
90
|
+
"tags": ["coding", "long-context"],
|
|
91
|
+
"source": "builtin",
|
|
92
|
+
"lastVerified": "2025-12-12"
|
|
93
|
+
},
|
|
94
|
+
"claude-haiku-3-5": {
|
|
95
|
+
"provider": "anthropic",
|
|
96
|
+
"displayName": "Claude Haiku 3.5",
|
|
97
|
+
"releaseDate": "2024-11-01",
|
|
98
|
+
"status": "active",
|
|
99
|
+
"deprecated": false,
|
|
100
|
+
"deprecationDate": null,
|
|
101
|
+
"successorModel": null,
|
|
102
|
+
"capabilities": {
|
|
103
|
+
"contextWindow": 200000,
|
|
104
|
+
"maxOutputTokens": 8192,
|
|
105
|
+
"vision": true,
|
|
106
|
+
"toolUse": true,
|
|
107
|
+
"streaming": true,
|
|
108
|
+
"reasoning": "good",
|
|
109
|
+
"coding": "good",
|
|
110
|
+
"speed": "excellent"
|
|
111
|
+
},
|
|
112
|
+
"pricing": {
|
|
113
|
+
"inputPer1kTokens": 0.00025,
|
|
114
|
+
"outputPer1kTokens": 0.00125,
|
|
115
|
+
"currency": "USD",
|
|
116
|
+
"lastUpdated": "2025-12-01"
|
|
117
|
+
},
|
|
118
|
+
"aliases": ["haiku", "haiku-3.5", "claude-haiku"],
|
|
119
|
+
"tags": ["fast", "efficient", "long-context"],
|
|
120
|
+
"source": "builtin",
|
|
121
|
+
"lastVerified": "2025-12-12"
|
|
122
|
+
},
|
|
123
|
+
"claude-3-opus-20240229": {
|
|
124
|
+
"provider": "anthropic",
|
|
125
|
+
"displayName": "Claude 3 Opus",
|
|
126
|
+
"releaseDate": "2024-02-29",
|
|
127
|
+
"status": "deprecated",
|
|
128
|
+
"deprecated": true,
|
|
129
|
+
"deprecationDate": "2025-08-01",
|
|
130
|
+
"successorModel": "claude-opus-4-6",
|
|
131
|
+
"capabilities": {
|
|
132
|
+
"contextWindow": 200000,
|
|
133
|
+
"maxOutputTokens": 4096,
|
|
134
|
+
"vision": true,
|
|
135
|
+
"toolUse": true,
|
|
136
|
+
"streaming": true,
|
|
137
|
+
"reasoning": "excellent",
|
|
138
|
+
"coding": "excellent",
|
|
139
|
+
"speed": "poor"
|
|
140
|
+
},
|
|
141
|
+
"pricing": {
|
|
142
|
+
"inputPer1kTokens": 0.015,
|
|
143
|
+
"outputPer1kTokens": 0.075,
|
|
144
|
+
"currency": "USD",
|
|
145
|
+
"lastUpdated": "2025-08-01"
|
|
146
|
+
},
|
|
147
|
+
"aliases": ["opus-3", "claude-3-opus"],
|
|
148
|
+
"tags": ["deprecated", "legacy"],
|
|
149
|
+
"source": "builtin",
|
|
150
|
+
"lastVerified": "2025-12-12"
|
|
151
|
+
},
|
|
152
|
+
"gpt-4o": {
|
|
153
|
+
"provider": "openai",
|
|
154
|
+
"displayName": "GPT-4o",
|
|
155
|
+
"releaseDate": "2024-05-13",
|
|
156
|
+
"status": "active",
|
|
157
|
+
"deprecated": false,
|
|
158
|
+
"deprecationDate": null,
|
|
159
|
+
"successorModel": null,
|
|
160
|
+
"capabilities": {
|
|
161
|
+
"contextWindow": 128000,
|
|
162
|
+
"maxOutputTokens": 4096,
|
|
163
|
+
"vision": true,
|
|
164
|
+
"toolUse": true,
|
|
165
|
+
"streaming": true,
|
|
166
|
+
"reasoning": "good",
|
|
167
|
+
"coding": "excellent",
|
|
168
|
+
"speed": "excellent"
|
|
169
|
+
},
|
|
170
|
+
"pricing": {
|
|
171
|
+
"inputPer1kTokens": 0.005,
|
|
172
|
+
"outputPer1kTokens": 0.015,
|
|
173
|
+
"currency": "USD",
|
|
174
|
+
"lastUpdated": "2025-12-01"
|
|
175
|
+
},
|
|
176
|
+
"aliases": ["gpt4o"],
|
|
177
|
+
"tags": ["multimodal", "fast", "coding"],
|
|
178
|
+
"source": "builtin",
|
|
179
|
+
"lastVerified": "2025-12-12"
|
|
180
|
+
},
|
|
181
|
+
"gpt-4o-mini": {
|
|
182
|
+
"provider": "openai",
|
|
183
|
+
"displayName": "GPT-4o Mini",
|
|
184
|
+
"releaseDate": "2024-07-18",
|
|
185
|
+
"status": "active",
|
|
186
|
+
"deprecated": false,
|
|
187
|
+
"deprecationDate": null,
|
|
188
|
+
"successorModel": null,
|
|
189
|
+
"capabilities": {
|
|
190
|
+
"contextWindow": 128000,
|
|
191
|
+
"maxOutputTokens": 4096,
|
|
192
|
+
"vision": true,
|
|
193
|
+
"toolUse": true,
|
|
194
|
+
"streaming": true,
|
|
195
|
+
"reasoning": "fair",
|
|
196
|
+
"coding": "good",
|
|
197
|
+
"speed": "excellent"
|
|
198
|
+
},
|
|
199
|
+
"pricing": {
|
|
200
|
+
"inputPer1kTokens": 0.00015,
|
|
201
|
+
"outputPer1kTokens": 0.0006,
|
|
202
|
+
"currency": "USD",
|
|
203
|
+
"lastUpdated": "2025-12-01"
|
|
204
|
+
},
|
|
205
|
+
"aliases": ["gpt4o-mini"],
|
|
206
|
+
"tags": ["efficient", "fast", "budget"],
|
|
207
|
+
"source": "builtin",
|
|
208
|
+
"lastVerified": "2025-12-12"
|
|
209
|
+
},
|
|
210
|
+
"gpt-5.3-codex": {
|
|
211
|
+
"provider": "openai",
|
|
212
|
+
"displayName": "GPT-5.3-Codex",
|
|
213
|
+
"releaseDate": "2026-02-05",
|
|
214
|
+
"status": "active",
|
|
215
|
+
"deprecated": false,
|
|
216
|
+
"deprecationDate": null,
|
|
217
|
+
"successorModel": null,
|
|
218
|
+
"capabilities": {
|
|
219
|
+
"contextWindow": 192000,
|
|
220
|
+
"maxOutputTokens": 16384,
|
|
221
|
+
"vision": true,
|
|
222
|
+
"toolUse": true,
|
|
223
|
+
"streaming": true,
|
|
224
|
+
"reasoning": "excellent",
|
|
225
|
+
"coding": "excellent",
|
|
226
|
+
"speed": "good"
|
|
227
|
+
},
|
|
228
|
+
"pricing": {
|
|
229
|
+
"inputPer1kTokens": 0.01,
|
|
230
|
+
"outputPer1kTokens": 0.04,
|
|
231
|
+
"currency": "USD",
|
|
232
|
+
"lastUpdated": "2026-02-06"
|
|
233
|
+
},
|
|
234
|
+
"aliases": ["gpt-5.3-codex", "gpt5.3-codex"],
|
|
235
|
+
"tags": ["flagship", "coding", "reasoning", "codex"],
|
|
236
|
+
"source": "builtin",
|
|
237
|
+
"lastVerified": "2026-02-06"
|
|
238
|
+
},
|
|
239
|
+
"gpt-5.4": {
|
|
240
|
+
"provider": "openai",
|
|
241
|
+
"displayName": "GPT-5.4",
|
|
242
|
+
"releaseDate": "2026-03-01",
|
|
243
|
+
"status": "active",
|
|
244
|
+
"deprecated": false,
|
|
245
|
+
"deprecationDate": null,
|
|
246
|
+
"successorModel": null,
|
|
247
|
+
"capabilities": {
|
|
248
|
+
"contextWindow": 256000,
|
|
249
|
+
"maxOutputTokens": 16384,
|
|
250
|
+
"vision": true,
|
|
251
|
+
"toolUse": true,
|
|
252
|
+
"streaming": true,
|
|
253
|
+
"reasoning": "excellent",
|
|
254
|
+
"coding": "excellent",
|
|
255
|
+
"speed": "good"
|
|
256
|
+
},
|
|
257
|
+
"pricing": {
|
|
258
|
+
"inputPer1kTokens": 0.01,
|
|
259
|
+
"outputPer1kTokens": 0.04,
|
|
260
|
+
"currency": "USD",
|
|
261
|
+
"lastUpdated": "2026-03-27"
|
|
262
|
+
},
|
|
263
|
+
"aliases": ["gpt5.4"],
|
|
264
|
+
"tags": ["flagship", "coding", "reasoning", "codex"],
|
|
265
|
+
"source": "builtin",
|
|
266
|
+
"lastVerified": "2026-03-27"
|
|
267
|
+
},
|
|
268
|
+
"gpt-5.1-codex-mini": {
|
|
269
|
+
"provider": "openai",
|
|
270
|
+
"displayName": "GPT-5.1-Codex-Mini",
|
|
271
|
+
"releaseDate": "2026-02-01",
|
|
272
|
+
"status": "active",
|
|
273
|
+
"deprecated": false,
|
|
274
|
+
"deprecationDate": null,
|
|
275
|
+
"successorModel": null,
|
|
276
|
+
"capabilities": {
|
|
277
|
+
"contextWindow": 192000,
|
|
278
|
+
"maxOutputTokens": 16384,
|
|
279
|
+
"vision": true,
|
|
280
|
+
"toolUse": true,
|
|
281
|
+
"streaming": true,
|
|
282
|
+
"reasoning": "good",
|
|
283
|
+
"coding": "good",
|
|
284
|
+
"speed": "excellent"
|
|
285
|
+
},
|
|
286
|
+
"pricing": {
|
|
287
|
+
"inputPer1kTokens": 0.001,
|
|
288
|
+
"outputPer1kTokens": 0.004,
|
|
289
|
+
"currency": "USD",
|
|
290
|
+
"lastUpdated": "2026-03-27"
|
|
291
|
+
},
|
|
292
|
+
"aliases": ["gpt5.1-codex-mini"],
|
|
293
|
+
"tags": ["budget", "coding", "efficient", "codex", "free-tier"],
|
|
294
|
+
"source": "builtin",
|
|
295
|
+
"lastVerified": "2026-03-27"
|
|
296
|
+
},
|
|
297
|
+
"codex-mini-latest": {
|
|
298
|
+
"provider": "openai",
|
|
299
|
+
"displayName": "Codex Mini (Latest) [Deprecated]",
|
|
300
|
+
"releaseDate": "2026-01-15",
|
|
301
|
+
"status": "deprecated",
|
|
302
|
+
"deprecated": true,
|
|
303
|
+
"deprecationDate": "2026-03-27",
|
|
304
|
+
"successorModel": "gpt-5.1-codex-mini",
|
|
305
|
+
"capabilities": {
|
|
306
|
+
"contextWindow": 192000,
|
|
307
|
+
"maxOutputTokens": 16384,
|
|
308
|
+
"vision": true,
|
|
309
|
+
"toolUse": true,
|
|
310
|
+
"streaming": true,
|
|
311
|
+
"reasoning": "good",
|
|
312
|
+
"coding": "excellent",
|
|
313
|
+
"speed": "excellent"
|
|
314
|
+
},
|
|
315
|
+
"pricing": {
|
|
316
|
+
"inputPer1kTokens": 0.0015,
|
|
317
|
+
"outputPer1kTokens": 0.006,
|
|
318
|
+
"currency": "USD",
|
|
319
|
+
"lastUpdated": "2026-02-06"
|
|
320
|
+
},
|
|
321
|
+
"aliases": ["codex-mini"],
|
|
322
|
+
"tags": ["coding", "efficient", "codex", "deprecated"],
|
|
323
|
+
"source": "builtin",
|
|
324
|
+
"lastVerified": "2026-03-27"
|
|
325
|
+
},
|
|
326
|
+
"gpt-5-codex-mini": {
|
|
327
|
+
"provider": "openai",
|
|
328
|
+
"displayName": "GPT-5-Codex-Mini [Deprecated]",
|
|
329
|
+
"releaseDate": "2026-01-10",
|
|
330
|
+
"status": "deprecated",
|
|
331
|
+
"deprecated": true,
|
|
332
|
+
"deprecationDate": "2026-03-27",
|
|
333
|
+
"successorModel": "gpt-5.1-codex-mini",
|
|
334
|
+
"capabilities": {
|
|
335
|
+
"contextWindow": 192000,
|
|
336
|
+
"maxOutputTokens": 16384,
|
|
337
|
+
"vision": true,
|
|
338
|
+
"toolUse": true,
|
|
339
|
+
"streaming": true,
|
|
340
|
+
"reasoning": "good",
|
|
341
|
+
"coding": "good",
|
|
342
|
+
"speed": "excellent"
|
|
343
|
+
},
|
|
344
|
+
"pricing": {
|
|
345
|
+
"inputPer1kTokens": 0.001,
|
|
346
|
+
"outputPer1kTokens": 0.004,
|
|
347
|
+
"currency": "USD",
|
|
348
|
+
"lastUpdated": "2026-02-06"
|
|
349
|
+
},
|
|
350
|
+
"aliases": ["gpt5-codex-mini"],
|
|
351
|
+
"tags": ["budget", "coding", "efficient", "codex", "deprecated"],
|
|
352
|
+
"source": "builtin",
|
|
353
|
+
"lastVerified": "2026-03-27"
|
|
354
|
+
},
|
|
355
|
+
"gpt-4-turbo": {
|
|
356
|
+
"provider": "openai",
|
|
357
|
+
"displayName": "GPT-4 Turbo",
|
|
358
|
+
"releaseDate": "2024-04-09",
|
|
359
|
+
"status": "active",
|
|
360
|
+
"deprecated": false,
|
|
361
|
+
"deprecationDate": null,
|
|
362
|
+
"successorModel": null,
|
|
363
|
+
"capabilities": {
|
|
364
|
+
"contextWindow": 128000,
|
|
365
|
+
"maxOutputTokens": 4096,
|
|
366
|
+
"vision": true,
|
|
367
|
+
"toolUse": true,
|
|
368
|
+
"streaming": true,
|
|
369
|
+
"reasoning": "excellent",
|
|
370
|
+
"coding": "excellent",
|
|
371
|
+
"speed": "good"
|
|
372
|
+
},
|
|
373
|
+
"pricing": {
|
|
374
|
+
"inputPer1kTokens": 0.01,
|
|
375
|
+
"outputPer1kTokens": 0.03,
|
|
376
|
+
"currency": "USD",
|
|
377
|
+
"lastUpdated": "2025-12-01"
|
|
378
|
+
},
|
|
379
|
+
"aliases": ["gpt4-turbo"],
|
|
380
|
+
"tags": ["reasoning", "coding"],
|
|
381
|
+
"source": "builtin",
|
|
382
|
+
"lastVerified": "2025-12-12"
|
|
383
|
+
},
|
|
384
|
+
"o1": {
|
|
385
|
+
"provider": "openai",
|
|
386
|
+
"displayName": "OpenAI o1",
|
|
387
|
+
"releaseDate": "2024-09-12",
|
|
388
|
+
"status": "active",
|
|
389
|
+
"deprecated": false,
|
|
390
|
+
"deprecationDate": null,
|
|
391
|
+
"successorModel": null,
|
|
392
|
+
"capabilities": {
|
|
393
|
+
"contextWindow": 128000,
|
|
394
|
+
"maxOutputTokens": 32768,
|
|
395
|
+
"vision": false,
|
|
396
|
+
"toolUse": false,
|
|
397
|
+
"streaming": false,
|
|
398
|
+
"reasoning": "excellent",
|
|
399
|
+
"coding": "excellent",
|
|
400
|
+
"speed": "poor"
|
|
401
|
+
},
|
|
402
|
+
"pricing": {
|
|
403
|
+
"inputPer1kTokens": 0.015,
|
|
404
|
+
"outputPer1kTokens": 0.06,
|
|
405
|
+
"currency": "USD",
|
|
406
|
+
"lastUpdated": "2025-12-01"
|
|
407
|
+
},
|
|
408
|
+
"aliases": ["o1-preview"],
|
|
409
|
+
"tags": ["reasoning", "long-output"],
|
|
410
|
+
"source": "builtin",
|
|
411
|
+
"lastVerified": "2025-12-12"
|
|
412
|
+
},
|
|
413
|
+
"o1-mini": {
|
|
414
|
+
"provider": "openai",
|
|
415
|
+
"displayName": "OpenAI o1-mini",
|
|
416
|
+
"releaseDate": "2024-09-12",
|
|
417
|
+
"status": "active",
|
|
418
|
+
"deprecated": false,
|
|
419
|
+
"deprecationDate": null,
|
|
420
|
+
"successorModel": null,
|
|
421
|
+
"capabilities": {
|
|
422
|
+
"contextWindow": 128000,
|
|
423
|
+
"maxOutputTokens": 16384,
|
|
424
|
+
"vision": false,
|
|
425
|
+
"toolUse": false,
|
|
426
|
+
"streaming": false,
|
|
427
|
+
"reasoning": "good",
|
|
428
|
+
"coding": "excellent",
|
|
429
|
+
"speed": "good"
|
|
430
|
+
},
|
|
431
|
+
"pricing": {
|
|
432
|
+
"inputPer1kTokens": 0.003,
|
|
433
|
+
"outputPer1kTokens": 0.012,
|
|
434
|
+
"currency": "USD",
|
|
435
|
+
"lastUpdated": "2025-12-01"
|
|
436
|
+
},
|
|
437
|
+
"aliases": [],
|
|
438
|
+
"tags": ["reasoning", "coding", "efficient"],
|
|
439
|
+
"source": "builtin",
|
|
440
|
+
"lastVerified": "2025-12-12"
|
|
441
|
+
},
|
|
442
|
+
"gemini-2.0-flash-exp": {
|
|
443
|
+
"provider": "google",
|
|
444
|
+
"displayName": "Gemini 2.0 Flash (Experimental)",
|
|
445
|
+
"releaseDate": "2024-12-11",
|
|
446
|
+
"status": "preview",
|
|
447
|
+
"deprecated": false,
|
|
448
|
+
"deprecationDate": null,
|
|
449
|
+
"successorModel": null,
|
|
450
|
+
"capabilities": {
|
|
451
|
+
"contextWindow": 1000000,
|
|
452
|
+
"maxOutputTokens": 8192,
|
|
453
|
+
"vision": true,
|
|
454
|
+
"toolUse": true,
|
|
455
|
+
"streaming": true,
|
|
456
|
+
"reasoning": "good",
|
|
457
|
+
"coding": "good",
|
|
458
|
+
"speed": "excellent"
|
|
459
|
+
},
|
|
460
|
+
"pricing": {
|
|
461
|
+
"inputPer1kTokens": 0,
|
|
462
|
+
"outputPer1kTokens": 0,
|
|
463
|
+
"currency": "USD",
|
|
464
|
+
"lastUpdated": "2024-12-11"
|
|
465
|
+
},
|
|
466
|
+
"aliases": ["gemini-2-flash"],
|
|
467
|
+
"tags": ["preview", "long-context", "multimodal", "free"],
|
|
468
|
+
"source": "builtin",
|
|
469
|
+
"lastVerified": "2025-12-12"
|
|
470
|
+
},
|
|
471
|
+
"qwen2.5-coder:14b": {
|
|
472
|
+
"provider": "ollama",
|
|
473
|
+
"displayName": "Qwen 2.5 Coder 14B",
|
|
474
|
+
"releaseDate": "2024-11-01",
|
|
475
|
+
"status": "active",
|
|
476
|
+
"deprecated": false,
|
|
477
|
+
"deprecationDate": null,
|
|
478
|
+
"successorModel": null,
|
|
479
|
+
"local": true,
|
|
480
|
+
"capabilities": {
|
|
481
|
+
"contextWindow": 32768,
|
|
482
|
+
"maxOutputTokens": 8192,
|
|
483
|
+
"vision": false,
|
|
484
|
+
"toolUse": true,
|
|
485
|
+
"streaming": true,
|
|
486
|
+
"reasoning": "good",
|
|
487
|
+
"coding": "excellent",
|
|
488
|
+
"speed": "good"
|
|
489
|
+
},
|
|
490
|
+
"pricing": null,
|
|
491
|
+
"hardware": {
|
|
492
|
+
"minVram": "12GB",
|
|
493
|
+
"recommendedVram": "12GB",
|
|
494
|
+
"quantization": "Q4_K_M"
|
|
495
|
+
},
|
|
496
|
+
"aliases": ["qwen2.5-coder", "qwen-coder-14b"],
|
|
497
|
+
"tags": ["local", "coding", "tool-use", "ollama", "recommended"],
|
|
498
|
+
"source": "builtin",
|
|
499
|
+
"lastVerified": "2026-03-01"
|
|
500
|
+
},
|
|
501
|
+
"qwen3.5:9b": {
|
|
502
|
+
"provider": "ollama",
|
|
503
|
+
"displayName": "Qwen 3.5 9B",
|
|
504
|
+
"releaseDate": "2026-03-01",
|
|
505
|
+
"status": "active",
|
|
506
|
+
"deprecated": false,
|
|
507
|
+
"deprecationDate": null,
|
|
508
|
+
"successorModel": null,
|
|
509
|
+
"local": true,
|
|
510
|
+
"capabilities": {
|
|
511
|
+
"contextWindow": 262144,
|
|
512
|
+
"maxOutputTokens": 8192,
|
|
513
|
+
"vision": true,
|
|
514
|
+
"toolUse": true,
|
|
515
|
+
"streaming": true,
|
|
516
|
+
"reasoning": "good",
|
|
517
|
+
"coding": "good",
|
|
518
|
+
"speed": "excellent"
|
|
519
|
+
},
|
|
520
|
+
"pricing": null,
|
|
521
|
+
"hardware": {
|
|
522
|
+
"minVram": "6GB",
|
|
523
|
+
"recommendedVram": "8GB",
|
|
524
|
+
"quantization": "Q4_K_M"
|
|
525
|
+
},
|
|
526
|
+
"aliases": ["qwen3.5", "qwen-3.5-9b"],
|
|
527
|
+
"tags": ["local", "efficiency", "tool-use", "ollama", "consumer-hardware", "vision"],
|
|
528
|
+
"source": "builtin",
|
|
529
|
+
"lastVerified": "2026-03-27"
|
|
530
|
+
},
|
|
531
|
+
"hermes-3-llama-3.1:8b": {
|
|
532
|
+
"provider": "ollama",
|
|
533
|
+
"displayName": "Hermes 3 Llama 3.1 8B",
|
|
534
|
+
"releaseDate": "2024-09-01",
|
|
535
|
+
"status": "active",
|
|
536
|
+
"deprecated": false,
|
|
537
|
+
"deprecationDate": null,
|
|
538
|
+
"successorModel": null,
|
|
539
|
+
"local": true,
|
|
540
|
+
"capabilities": {
|
|
541
|
+
"contextWindow": 131072,
|
|
542
|
+
"maxOutputTokens": 8192,
|
|
543
|
+
"vision": false,
|
|
544
|
+
"toolUse": true,
|
|
545
|
+
"streaming": true,
|
|
546
|
+
"reasoning": "fair",
|
|
547
|
+
"coding": "good",
|
|
548
|
+
"speed": "excellent"
|
|
549
|
+
},
|
|
550
|
+
"pricing": null,
|
|
551
|
+
"hardware": {
|
|
552
|
+
"minVram": "8GB",
|
|
553
|
+
"recommendedVram": "8GB",
|
|
554
|
+
"quantization": "Q4_K_M"
|
|
555
|
+
},
|
|
556
|
+
"aliases": ["hermes-3", "nous-hermes-3"],
|
|
557
|
+
"tags": ["local", "tool-use", "ollama", "long-context", "consumer-hardware"],
|
|
558
|
+
"source": "builtin",
|
|
559
|
+
"lastVerified": "2026-03-01"
|
|
560
|
+
},
|
|
561
|
+
"llama3.3:70b": {
|
|
562
|
+
"provider": "ollama",
|
|
563
|
+
"displayName": "Llama 3.3 70B",
|
|
564
|
+
"releaseDate": "2024-12-01",
|
|
565
|
+
"status": "active",
|
|
566
|
+
"deprecated": false,
|
|
567
|
+
"deprecationDate": null,
|
|
568
|
+
"successorModel": null,
|
|
569
|
+
"local": true,
|
|
570
|
+
"capabilities": {
|
|
571
|
+
"contextWindow": 131072,
|
|
572
|
+
"maxOutputTokens": 8192,
|
|
573
|
+
"vision": false,
|
|
574
|
+
"toolUse": true,
|
|
575
|
+
"streaming": true,
|
|
576
|
+
"reasoning": "excellent",
|
|
577
|
+
"coding": "good",
|
|
578
|
+
"speed": "fair"
|
|
579
|
+
},
|
|
580
|
+
"pricing": null,
|
|
581
|
+
"hardware": {
|
|
582
|
+
"minVram": "48GB",
|
|
583
|
+
"recommendedVram": "48GB",
|
|
584
|
+
"quantization": "Q4_K_M"
|
|
585
|
+
},
|
|
586
|
+
"aliases": ["llama3.3", "llama-3.3-70b"],
|
|
587
|
+
"tags": ["local", "reasoning", "tool-use", "ollama", "high-end"],
|
|
588
|
+
"source": "builtin",
|
|
589
|
+
"lastVerified": "2026-03-01"
|
|
590
|
+
}
|
|
591
|
+
},
|
|
592
|
+
"providers": {
|
|
593
|
+
"anthropic": {
|
|
594
|
+
"displayName": "Anthropic",
|
|
595
|
+
"apiEndpoint": "https://api.anthropic.com",
|
|
596
|
+
"modelsEndpoint": "https://api.anthropic.com/v1/models",
|
|
597
|
+
"docsUrl": "https://docs.anthropic.com",
|
|
598
|
+
"pricingUrl": "https://www.anthropic.com/pricing"
|
|
599
|
+
},
|
|
600
|
+
"openai": {
|
|
601
|
+
"displayName": "OpenAI",
|
|
602
|
+
"apiEndpoint": "https://api.openai.com",
|
|
603
|
+
"modelsEndpoint": "https://api.openai.com/v1/models",
|
|
604
|
+
"docsUrl": "https://platform.openai.com/docs",
|
|
605
|
+
"pricingUrl": "https://openai.com/pricing"
|
|
606
|
+
},
|
|
607
|
+
"google": {
|
|
608
|
+
"displayName": "Google AI",
|
|
609
|
+
"apiEndpoint": "https://generativelanguage.googleapis.com",
|
|
610
|
+
"modelsEndpoint": "https://generativelanguage.googleapis.com/v1/models",
|
|
611
|
+
"docsUrl": "https://ai.google.dev/docs",
|
|
612
|
+
"pricingUrl": "https://ai.google.dev/pricing"
|
|
613
|
+
},
|
|
614
|
+
"openrouter": {
|
|
615
|
+
"displayName": "OpenRouter",
|
|
616
|
+
"apiEndpoint": "https://openrouter.ai/api",
|
|
617
|
+
"modelsEndpoint": "https://openrouter.ai/api/v1/models",
|
|
618
|
+
"docsUrl": "https://openrouter.ai/docs",
|
|
619
|
+
"pricingUrl": "https://openrouter.ai/models"
|
|
620
|
+
},
|
|
621
|
+
"ollama": {
|
|
622
|
+
"displayName": "Ollama",
|
|
623
|
+
"apiEndpoint": "http://localhost:11434",
|
|
624
|
+
"modelsEndpoint": "http://localhost:11434/api/tags",
|
|
625
|
+
"docsUrl": "https://ollama.com/library",
|
|
626
|
+
"pricingUrl": null,
|
|
627
|
+
"local": true
|
|
628
|
+
}
|
|
629
|
+
},
|
|
630
|
+
"metadata": {
|
|
631
|
+
"version": "1.2.0",
|
|
632
|
+
"lastRefresh": "2026-03-23T00:00:00Z",
|
|
633
|
+
"modelCount": 19,
|
|
634
|
+
"providerCount": 5
|
|
635
|
+
}
|
|
636
|
+
}
|