@jaimevalasek/aioson 1.3.0
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/CHANGELOG.md +456 -0
- package/CODE_OF_CONDUCT.md +12 -0
- package/CONTRIBUTING.md +13 -0
- package/LICENSE +21 -0
- package/README.md +254 -0
- package/bin/aioson.js +4 -0
- package/docs/en/cli-reference.md +398 -0
- package/docs/en/i18n.md +52 -0
- package/docs/en/json-schemas.md +41 -0
- package/docs/en/mcp.md +56 -0
- package/docs/en/parallel.md +82 -0
- package/docs/en/qa-browser.md +339 -0
- package/docs/en/release-flow.md +22 -0
- package/docs/en/release-notes-template.md +41 -0
- package/docs/en/release.md +28 -0
- package/docs/en/schemas/agent-prompt.schema.json +17 -0
- package/docs/en/schemas/agents.schema.json +32 -0
- package/docs/en/schemas/context-validate.schema.json +36 -0
- package/docs/en/schemas/doctor.schema.json +89 -0
- package/docs/en/schemas/error.schema.json +24 -0
- package/docs/en/schemas/i18n-add.schema.json +15 -0
- package/docs/en/schemas/index.json +116 -0
- package/docs/en/schemas/info.schema.json +39 -0
- package/docs/en/schemas/init.schema.json +48 -0
- package/docs/en/schemas/install.schema.json +60 -0
- package/docs/en/schemas/locale-apply.schema.json +30 -0
- package/docs/en/schemas/mcp-doctor.schema.json +95 -0
- package/docs/en/schemas/mcp-init.schema.json +122 -0
- package/docs/en/schemas/package-test.schema.json +24 -0
- package/docs/en/schemas/parallel-assign.schema.json +57 -0
- package/docs/en/schemas/parallel-doctor.schema.json +86 -0
- package/docs/en/schemas/parallel-init.schema.json +53 -0
- package/docs/en/schemas/parallel-status.schema.json +94 -0
- package/docs/en/schemas/setup-context.schema.json +39 -0
- package/docs/en/schemas/smoke.schema.json +23 -0
- package/docs/en/schemas/update.schema.json +48 -0
- package/docs/en/schemas/workflow-plan.schema.json +30 -0
- package/docs/en/web3.md +54 -0
- package/docs/pt/README.md +46 -0
- package/docs/pt/advisor-spec.md +335 -0
- package/docs/pt/agentes.md +453 -0
- package/docs/pt/cenarios.md +1230 -0
- package/docs/pt/clientes-ai.md +224 -0
- package/docs/pt/comandos-cli.md +511 -0
- package/docs/pt/genome-3.0-spec.md +296 -0
- package/docs/pt/guia-engineer.md +226 -0
- package/docs/pt/inicio-rapido.md +138 -0
- package/docs/pt/profiler-system.md +214 -0
- package/docs/pt/runtime-observability.md +72 -0
- package/docs/pt/squad-genoma.md +777 -0
- package/docs/pt/web3.md +797 -0
- package/docs/testing/genome-2.0-manual-regression.md +23 -0
- package/docs/testing/genome-2.0-matrix.md +36 -0
- package/docs/testing/genome-2.0-rollout.md +184 -0
- package/package.json +50 -0
- package/src/agents.js +56 -0
- package/src/cli.js +497 -0
- package/src/commands/agents.js +142 -0
- package/src/commands/cloud.js +1767 -0
- package/src/commands/config.js +90 -0
- package/src/commands/context-validate.js +91 -0
- package/src/commands/doctor.js +123 -0
- package/src/commands/genome-doctor.js +41 -0
- package/src/commands/genome-migrate.js +49 -0
- package/src/commands/i18n-add.js +56 -0
- package/src/commands/info.js +41 -0
- package/src/commands/init.js +75 -0
- package/src/commands/install.js +68 -0
- package/src/commands/locale-apply.js +51 -0
- package/src/commands/locale-diff.js +126 -0
- package/src/commands/mcp-doctor.js +406 -0
- package/src/commands/mcp-init.js +379 -0
- package/src/commands/package-e2e.js +273 -0
- package/src/commands/parallel-assign.js +403 -0
- package/src/commands/parallel-doctor.js +437 -0
- package/src/commands/parallel-init.js +249 -0
- package/src/commands/parallel-status.js +290 -0
- package/src/commands/qa-doctor.js +185 -0
- package/src/commands/qa-init.js +161 -0
- package/src/commands/qa-report.js +58 -0
- package/src/commands/qa-run.js +873 -0
- package/src/commands/qa-scan.js +337 -0
- package/src/commands/runtime.js +948 -0
- package/src/commands/scan-project.js +1107 -0
- package/src/commands/setup-context.js +650 -0
- package/src/commands/smoke.js +426 -0
- package/src/commands/squad-doctor.js +358 -0
- package/src/commands/squad-export.js +46 -0
- package/src/commands/squad-pipeline.js +97 -0
- package/src/commands/squad-repair-genomes.js +39 -0
- package/src/commands/squad-status.js +424 -0
- package/src/commands/squad-validate.js +230 -0
- package/src/commands/test-agents.js +194 -0
- package/src/commands/update.js +55 -0
- package/src/commands/workflow-next.js +594 -0
- package/src/commands/workflow-plan.js +108 -0
- package/src/constants.js +314 -0
- package/src/context-parse-reason.js +22 -0
- package/src/context-writer.js +150 -0
- package/src/context.js +217 -0
- package/src/detector.js +261 -0
- package/src/doctor.js +289 -0
- package/src/execution-gateway.js +461 -0
- package/src/genome-files.js +198 -0
- package/src/genome-format.js +442 -0
- package/src/genome-schema.js +215 -0
- package/src/genomes/bindings.js +281 -0
- package/src/genomes.js +467 -0
- package/src/i18n/index.js +103 -0
- package/src/i18n/messages/en.js +784 -0
- package/src/i18n/messages/es.js +718 -0
- package/src/i18n/messages/fr.js +725 -0
- package/src/i18n/messages/pt-BR.js +818 -0
- package/src/i18n/scaffold.js +64 -0
- package/src/installer.js +232 -0
- package/src/lib/genomes/compat.js +206 -0
- package/src/lib/genomes/migrate.js +90 -0
- package/src/lib/squads/genome-repair.js +49 -0
- package/src/locales.js +84 -0
- package/src/onboarding.js +305 -0
- package/src/parser.js +53 -0
- package/src/prompt-tool.js +20 -0
- package/src/qa-html-report.js +472 -0
- package/src/runtime-store.js +1527 -0
- package/src/squads/apply-genome.js +21 -0
- package/src/squads/genome-binding-service.js +154 -0
- package/src/updater.js +32 -0
- package/src/utils.js +46 -0
- package/src/version.js +50 -0
- package/template/.aioson/advisors/.gitkeep +1 -0
- package/template/.aioson/agents/analyst.md +225 -0
- package/template/.aioson/agents/architect.md +221 -0
- package/template/.aioson/agents/dev.md +201 -0
- package/template/.aioson/agents/discovery-design-doc.md +196 -0
- package/template/.aioson/agents/genoma.md +300 -0
- package/template/.aioson/agents/orchestrator.md +107 -0
- package/template/.aioson/agents/pm.md +89 -0
- package/template/.aioson/agents/product.md +361 -0
- package/template/.aioson/agents/profiler-enricher.md +266 -0
- package/template/.aioson/agents/profiler-forge.md +188 -0
- package/template/.aioson/agents/profiler-researcher.md +245 -0
- package/template/.aioson/agents/qa.md +344 -0
- package/template/.aioson/agents/setup.md +381 -0
- package/template/.aioson/agents/squad.md +837 -0
- package/template/.aioson/agents/ux-ui.md +416 -0
- package/template/.aioson/config.md +56 -0
- package/template/.aioson/context/.gitkeep +0 -0
- package/template/.aioson/context/parallel/.gitkeep +0 -0
- package/template/.aioson/context/spec.md.template +37 -0
- package/template/.aioson/genomas/.gitkeep +0 -0
- package/template/.aioson/locales/en/agents/analyst.md +214 -0
- package/template/.aioson/locales/en/agents/architect.md +210 -0
- package/template/.aioson/locales/en/agents/dev.md +187 -0
- package/template/.aioson/locales/en/agents/discovery-design-doc.md +27 -0
- package/template/.aioson/locales/en/agents/genoma.md +212 -0
- package/template/.aioson/locales/en/agents/orchestrator.md +105 -0
- package/template/.aioson/locales/en/agents/pm.md +77 -0
- package/template/.aioson/locales/en/agents/product.md +310 -0
- package/template/.aioson/locales/en/agents/profiler-enricher.md +5 -0
- package/template/.aioson/locales/en/agents/profiler-forge.md +5 -0
- package/template/.aioson/locales/en/agents/profiler-researcher.md +5 -0
- package/template/.aioson/locales/en/agents/qa.md +214 -0
- package/template/.aioson/locales/en/agents/setup.md +342 -0
- package/template/.aioson/locales/en/agents/squad.md +247 -0
- package/template/.aioson/locales/en/agents/ux-ui.md +320 -0
- package/template/.aioson/locales/es/agents/analyst.md +203 -0
- package/template/.aioson/locales/es/agents/architect.md +208 -0
- package/template/.aioson/locales/es/agents/dev.md +183 -0
- package/template/.aioson/locales/es/agents/discovery-design-doc.md +19 -0
- package/template/.aioson/locales/es/agents/genoma.md +102 -0
- package/template/.aioson/locales/es/agents/orchestrator.md +108 -0
- package/template/.aioson/locales/es/agents/pm.md +81 -0
- package/template/.aioson/locales/es/agents/product.md +310 -0
- package/template/.aioson/locales/es/agents/profiler-enricher.md +5 -0
- package/template/.aioson/locales/es/agents/profiler-forge.md +5 -0
- package/template/.aioson/locales/es/agents/profiler-researcher.md +5 -0
- package/template/.aioson/locales/es/agents/qa.md +163 -0
- package/template/.aioson/locales/es/agents/setup.md +347 -0
- package/template/.aioson/locales/es/agents/squad.md +247 -0
- package/template/.aioson/locales/es/agents/ux-ui.md +201 -0
- package/template/.aioson/locales/fr/agents/analyst.md +203 -0
- package/template/.aioson/locales/fr/agents/architect.md +208 -0
- package/template/.aioson/locales/fr/agents/dev.md +183 -0
- package/template/.aioson/locales/fr/agents/discovery-design-doc.md +19 -0
- package/template/.aioson/locales/fr/agents/genoma.md +102 -0
- package/template/.aioson/locales/fr/agents/orchestrator.md +108 -0
- package/template/.aioson/locales/fr/agents/pm.md +81 -0
- package/template/.aioson/locales/fr/agents/product.md +310 -0
- package/template/.aioson/locales/fr/agents/profiler-enricher.md +5 -0
- package/template/.aioson/locales/fr/agents/profiler-forge.md +5 -0
- package/template/.aioson/locales/fr/agents/profiler-researcher.md +5 -0
- package/template/.aioson/locales/fr/agents/qa.md +163 -0
- package/template/.aioson/locales/fr/agents/setup.md +347 -0
- package/template/.aioson/locales/fr/agents/squad.md +247 -0
- package/template/.aioson/locales/fr/agents/ux-ui.md +201 -0
- package/template/.aioson/locales/pt-BR/agents/analyst.md +217 -0
- package/template/.aioson/locales/pt-BR/agents/architect.md +213 -0
- package/template/.aioson/locales/pt-BR/agents/dev.md +198 -0
- package/template/.aioson/locales/pt-BR/agents/discovery-design-doc.md +198 -0
- package/template/.aioson/locales/pt-BR/agents/genoma.md +297 -0
- package/template/.aioson/locales/pt-BR/agents/orchestrator.md +108 -0
- package/template/.aioson/locales/pt-BR/agents/pm.md +81 -0
- package/template/.aioson/locales/pt-BR/agents/product.md +316 -0
- package/template/.aioson/locales/pt-BR/agents/profiler-enricher.md +5 -0
- package/template/.aioson/locales/pt-BR/agents/profiler-forge.md +5 -0
- package/template/.aioson/locales/pt-BR/agents/profiler-researcher.md +5 -0
- package/template/.aioson/locales/pt-BR/agents/qa.md +217 -0
- package/template/.aioson/locales/pt-BR/agents/setup.md +371 -0
- package/template/.aioson/locales/pt-BR/agents/squad.md +772 -0
- package/template/.aioson/locales/pt-BR/agents/ux-ui.md +322 -0
- package/template/.aioson/mcp/servers.md +24 -0
- package/template/.aioson/profiler-reports/.gitkeep +1 -0
- package/template/.aioson/schemas/content-blueprint.schema.json +30 -0
- package/template/.aioson/schemas/genome-meta.schema.json +150 -0
- package/template/.aioson/schemas/genome.schema.json +115 -0
- package/template/.aioson/schemas/readiness.schema.json +27 -0
- package/template/.aioson/schemas/squad-blueprint.schema.json +172 -0
- package/template/.aioson/schemas/squad-manifest.schema.json +276 -0
- package/template/.aioson/skills/dynamic/README.md +30 -0
- package/template/.aioson/skills/dynamic/cardano-docs.md +16 -0
- package/template/.aioson/skills/dynamic/ethereum-docs.md +17 -0
- package/template/.aioson/skills/dynamic/flux-ui-docs.md +13 -0
- package/template/.aioson/skills/dynamic/laravel-docs.md +41 -0
- package/template/.aioson/skills/dynamic/npm-packages.md +16 -0
- package/template/.aioson/skills/dynamic/solana-docs.md +16 -0
- package/template/.aioson/skills/references/premium-command-center-ui/master-application-prompt.md +79 -0
- package/template/.aioson/skills/references/premium-command-center-ui/operational-ux-playbook.md +253 -0
- package/template/.aioson/skills/references/premium-command-center-ui/quality-validation-checklist.md +82 -0
- package/template/.aioson/skills/references/premium-command-center-ui/visual-system-and-component-patterns.md +270 -0
- package/template/.aioson/skills/static/django-patterns.md +342 -0
- package/template/.aioson/skills/static/fastapi-patterns.md +344 -0
- package/template/.aioson/skills/static/filament-patterns.md +267 -0
- package/template/.aioson/skills/static/flux-ui-components.md +262 -0
- package/template/.aioson/skills/static/git-conventions.md +227 -0
- package/template/.aioson/skills/static/interface-design.md +372 -0
- package/template/.aioson/skills/static/jetstream-setup.md +200 -0
- package/template/.aioson/skills/static/laravel-conventions.md +491 -0
- package/template/.aioson/skills/static/nextjs-patterns.md +321 -0
- package/template/.aioson/skills/static/node-express-patterns.md +317 -0
- package/template/.aioson/skills/static/node-typescript-patterns.md +282 -0
- package/template/.aioson/skills/static/premium-command-center-ui.md +190 -0
- package/template/.aioson/skills/static/rails-conventions.md +307 -0
- package/template/.aioson/skills/static/react-motion-patterns.md +577 -0
- package/template/.aioson/skills/static/static-html-patterns.md +1935 -0
- package/template/.aioson/skills/static/tall-stack-patterns.md +286 -0
- package/template/.aioson/skills/static/ui-ux-modern.md +75 -0
- package/template/.aioson/skills/static/web3-cardano-patterns.md +337 -0
- package/template/.aioson/skills/static/web3-ethereum-patterns.md +310 -0
- package/template/.aioson/skills/static/web3-security-checklist.md +284 -0
- package/template/.aioson/skills/static/web3-solana-patterns.md +324 -0
- package/template/.aioson/squads/.artisan/.gitkeep +0 -0
- package/template/.aioson/squads/.gitkeep +0 -0
- package/template/.aioson/squads/memory.md +5 -0
- package/template/.aioson/tasks/squad-analyze.md +83 -0
- package/template/.aioson/tasks/squad-create.md +99 -0
- package/template/.aioson/tasks/squad-design.md +100 -0
- package/template/.aioson/tasks/squad-export.md +20 -0
- package/template/.aioson/tasks/squad-extend.md +68 -0
- package/template/.aioson/tasks/squad-pipeline.md +122 -0
- package/template/.aioson/tasks/squad-repair.md +85 -0
- package/template/.aioson/tasks/squad-validate.md +58 -0
- package/template/.aioson/templates/squads/content-basic/template.json +21 -0
- package/template/.aioson/templates/squads/media-channel/template.json +24 -0
- package/template/.aioson/templates/squads/research-analysis/template.json +22 -0
- package/template/.aioson/templates/squads/software-delivery/template.json +21 -0
- package/template/.claude/commands/aioson/analyst.md +5 -0
- package/template/.claude/commands/aioson/architect.md +5 -0
- package/template/.claude/commands/aioson/dev.md +5 -0
- package/template/.claude/commands/aioson/orchestrator.md +5 -0
- package/template/.claude/commands/aioson/pm.md +5 -0
- package/template/.claude/commands/aioson/qa.md +5 -0
- package/template/.claude/commands/aioson/setup.md +5 -0
- package/template/.claude/commands/aioson/ux-ui.md +5 -0
- package/template/.gemini/GEMINI.md +10 -0
- package/template/.gemini/commands/aios-analyst.toml +4 -0
- package/template/.gemini/commands/aios-architect.toml +7 -0
- package/template/.gemini/commands/aios-dev.toml +8 -0
- package/template/.gemini/commands/aios-discovery-design-doc.toml +4 -0
- package/template/.gemini/commands/aios-orchestrator.toml +8 -0
- package/template/.gemini/commands/aios-pm.toml +8 -0
- package/template/.gemini/commands/aios-product.toml +4 -0
- package/template/.gemini/commands/aios-qa.toml +6 -0
- package/template/.gemini/commands/aios-setup.toml +3 -0
- package/template/.gemini/commands/aios-ux-ui.toml +8 -0
- package/template/AGENTS.md +67 -0
- package/template/CLAUDE.md +31 -0
- package/template/OPENCODE.md +24 -0
- package/template/aioson-models.json +40 -0
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://aiosforge.dev/schemas/mcp-init.schema.json",
|
|
4
|
+
"title": "AIOSON mcp:init --json output",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"required": ["ok", "targetDir", "filePath", "dryRun", "written", "contextExists", "contextParsed", "serverCount", "presetCount", "presetFiles", "plan", "presets"],
|
|
7
|
+
"properties": {
|
|
8
|
+
"ok": { "type": "boolean", "const": true },
|
|
9
|
+
"targetDir": { "type": "string" },
|
|
10
|
+
"filePath": { "type": "string" },
|
|
11
|
+
"dryRun": { "type": "boolean" },
|
|
12
|
+
"written": { "type": "boolean" },
|
|
13
|
+
"contextExists": { "type": "boolean" },
|
|
14
|
+
"contextParsed": { "type": "boolean" },
|
|
15
|
+
"serverCount": { "type": "integer", "minimum": 0 },
|
|
16
|
+
"presetCount": { "type": "integer", "minimum": 0 },
|
|
17
|
+
"presetFiles": {
|
|
18
|
+
"type": "array",
|
|
19
|
+
"items": {
|
|
20
|
+
"type": "object",
|
|
21
|
+
"required": ["tool", "path"],
|
|
22
|
+
"properties": {
|
|
23
|
+
"tool": { "type": "string" },
|
|
24
|
+
"path": { "type": "string" }
|
|
25
|
+
},
|
|
26
|
+
"additionalProperties": true
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"plan": {
|
|
30
|
+
"type": "object",
|
|
31
|
+
"required": ["generated_at", "project", "database_engine", "web3_enabled", "web3_networks", "servers"],
|
|
32
|
+
"properties": {
|
|
33
|
+
"generated_at": { "type": "string" },
|
|
34
|
+
"project": {
|
|
35
|
+
"type": "object",
|
|
36
|
+
"required": ["path", "framework", "project_type", "conversation_language"],
|
|
37
|
+
"properties": {
|
|
38
|
+
"path": { "type": "string" },
|
|
39
|
+
"framework": { "type": "string" },
|
|
40
|
+
"project_type": { "type": "string" },
|
|
41
|
+
"conversation_language": { "type": "string" }
|
|
42
|
+
},
|
|
43
|
+
"additionalProperties": true
|
|
44
|
+
},
|
|
45
|
+
"database_engine": { "type": "string" },
|
|
46
|
+
"web3_enabled": { "type": "boolean" },
|
|
47
|
+
"web3_networks": {
|
|
48
|
+
"type": "array",
|
|
49
|
+
"items": { "type": "string" }
|
|
50
|
+
},
|
|
51
|
+
"servers": {
|
|
52
|
+
"type": "array",
|
|
53
|
+
"items": {
|
|
54
|
+
"type": "object",
|
|
55
|
+
"required": ["id", "enabled", "recommended", "reason", "env"],
|
|
56
|
+
"properties": {
|
|
57
|
+
"id": { "type": "string" },
|
|
58
|
+
"enabled": { "type": "boolean" },
|
|
59
|
+
"recommended": { "type": "boolean" },
|
|
60
|
+
"reason": { "type": "string" },
|
|
61
|
+
"env": {
|
|
62
|
+
"type": "array",
|
|
63
|
+
"items": { "type": "string" }
|
|
64
|
+
},
|
|
65
|
+
"engine": { "type": "string" },
|
|
66
|
+
"networks": {
|
|
67
|
+
"type": "array",
|
|
68
|
+
"items": { "type": "string" }
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
"additionalProperties": true
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
"additionalProperties": true
|
|
76
|
+
},
|
|
77
|
+
"presets": {
|
|
78
|
+
"type": "array",
|
|
79
|
+
"items": {
|
|
80
|
+
"type": "object",
|
|
81
|
+
"required": ["tool", "tool_label", "generated_at", "source_plan", "suggested_target_file", "notes", "env_required", "mcpServers"],
|
|
82
|
+
"properties": {
|
|
83
|
+
"tool": { "type": "string" },
|
|
84
|
+
"tool_label": { "type": "string" },
|
|
85
|
+
"generated_at": { "type": "string" },
|
|
86
|
+
"source_plan": { "type": "string" },
|
|
87
|
+
"suggested_target_file": { "type": "string" },
|
|
88
|
+
"notes": {
|
|
89
|
+
"type": "array",
|
|
90
|
+
"items": { "type": "string" }
|
|
91
|
+
},
|
|
92
|
+
"env_required": {
|
|
93
|
+
"type": "array",
|
|
94
|
+
"items": { "type": "string" }
|
|
95
|
+
},
|
|
96
|
+
"mcpServers": {
|
|
97
|
+
"type": "object",
|
|
98
|
+
"additionalProperties": {
|
|
99
|
+
"type": "object",
|
|
100
|
+
"required": ["transport", "command", "args", "env"],
|
|
101
|
+
"properties": {
|
|
102
|
+
"transport": { "type": "string" },
|
|
103
|
+
"command": { "type": "string" },
|
|
104
|
+
"args": {
|
|
105
|
+
"type": "array",
|
|
106
|
+
"items": { "type": "string" }
|
|
107
|
+
},
|
|
108
|
+
"env": {
|
|
109
|
+
"type": "object",
|
|
110
|
+
"additionalProperties": { "type": "string" }
|
|
111
|
+
}
|
|
112
|
+
},
|
|
113
|
+
"additionalProperties": true
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
},
|
|
117
|
+
"additionalProperties": true
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
},
|
|
121
|
+
"additionalProperties": true
|
|
122
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://aiosforge.dev/schemas/package-test.schema.json",
|
|
4
|
+
"title": "AIOSON test:package --json output",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"required": ["ok", "dryRun", "keep", "sourceDir", "workspaceRoot", "projectDir", "steps"],
|
|
7
|
+
"properties": {
|
|
8
|
+
"ok": { "type": "boolean", "const": true },
|
|
9
|
+
"dryRun": { "type": "boolean" },
|
|
10
|
+
"keep": { "type": "boolean" },
|
|
11
|
+
"sourceDir": { "type": "string" },
|
|
12
|
+
"workspaceRoot": { "type": "string" },
|
|
13
|
+
"projectDir": { "type": "string" },
|
|
14
|
+
"steps": {
|
|
15
|
+
"type": "array",
|
|
16
|
+
"items": { "type": "string" }
|
|
17
|
+
},
|
|
18
|
+
"tarballName": { "type": "string" },
|
|
19
|
+
"tarballPath": { "type": "string" },
|
|
20
|
+
"doctorOk": { "type": "boolean" },
|
|
21
|
+
"mcpServerCount": { "type": "integer", "minimum": 0 }
|
|
22
|
+
},
|
|
23
|
+
"additionalProperties": true
|
|
24
|
+
}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://aiosforge.dev/schemas/parallel-assign.schema.json",
|
|
4
|
+
"title": "AIOSON parallel:assign --json output",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"required": [
|
|
7
|
+
"ok",
|
|
8
|
+
"targetDir",
|
|
9
|
+
"classification",
|
|
10
|
+
"workers",
|
|
11
|
+
"dryRun",
|
|
12
|
+
"force",
|
|
13
|
+
"generatedAt",
|
|
14
|
+
"source",
|
|
15
|
+
"sourceFile",
|
|
16
|
+
"extractionMethod",
|
|
17
|
+
"fallbackUsed",
|
|
18
|
+
"scopeCount",
|
|
19
|
+
"assignments",
|
|
20
|
+
"filesUpdated"
|
|
21
|
+
],
|
|
22
|
+
"properties": {
|
|
23
|
+
"ok": { "type": "boolean", "const": true },
|
|
24
|
+
"targetDir": { "type": "string" },
|
|
25
|
+
"classification": { "type": "string" },
|
|
26
|
+
"workers": { "type": "integer", "minimum": 2, "maximum": 6 },
|
|
27
|
+
"dryRun": { "type": "boolean" },
|
|
28
|
+
"force": { "type": "boolean" },
|
|
29
|
+
"generatedAt": { "type": "string" },
|
|
30
|
+
"source": { "type": "string" },
|
|
31
|
+
"sourceFile": { "type": "string" },
|
|
32
|
+
"extractionMethod": { "type": "string" },
|
|
33
|
+
"fallbackUsed": { "type": "boolean" },
|
|
34
|
+
"scopeCount": { "type": "integer", "minimum": 0 },
|
|
35
|
+
"assignments": {
|
|
36
|
+
"type": "array",
|
|
37
|
+
"items": {
|
|
38
|
+
"type": "object",
|
|
39
|
+
"required": ["lane", "file", "items"],
|
|
40
|
+
"properties": {
|
|
41
|
+
"lane": { "type": "integer", "minimum": 1 },
|
|
42
|
+
"file": { "type": "string" },
|
|
43
|
+
"items": {
|
|
44
|
+
"type": "array",
|
|
45
|
+
"items": { "type": "string" }
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
"additionalProperties": true
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
"filesUpdated": {
|
|
52
|
+
"type": "array",
|
|
53
|
+
"items": { "type": "string" }
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
"additionalProperties": true
|
|
57
|
+
}
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://aiosforge.dev/schemas/parallel-doctor.schema.json",
|
|
4
|
+
"title": "AIOSON parallel:doctor --json output",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"required": ["ok", "targetDir", "workers", "fix", "state", "checks", "summary"],
|
|
7
|
+
"properties": {
|
|
8
|
+
"ok": { "type": "boolean" },
|
|
9
|
+
"targetDir": { "type": "string" },
|
|
10
|
+
"workers": { "type": "integer", "minimum": 2, "maximum": 6 },
|
|
11
|
+
"fix": {
|
|
12
|
+
"type": "object",
|
|
13
|
+
"required": ["enabled", "dryRun", "force"],
|
|
14
|
+
"properties": {
|
|
15
|
+
"enabled": { "type": "boolean" },
|
|
16
|
+
"dryRun": { "type": "boolean" },
|
|
17
|
+
"force": { "type": "boolean" },
|
|
18
|
+
"changedCount": { "type": "integer", "minimum": 0 },
|
|
19
|
+
"actions": {
|
|
20
|
+
"type": "array",
|
|
21
|
+
"items": {
|
|
22
|
+
"type": "object",
|
|
23
|
+
"required": ["id", "applied", "count"],
|
|
24
|
+
"properties": {
|
|
25
|
+
"id": { "type": "string" },
|
|
26
|
+
"applied": { "type": "boolean" },
|
|
27
|
+
"skipped": { "type": "boolean" },
|
|
28
|
+
"count": { "type": "integer", "minimum": 0 }
|
|
29
|
+
},
|
|
30
|
+
"additionalProperties": true
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"additionalProperties": true
|
|
35
|
+
},
|
|
36
|
+
"state": {
|
|
37
|
+
"type": "object",
|
|
38
|
+
"required": ["parallelDir", "dirExists", "sharedExists", "laneFiles", "laneIndices", "missingLaneIndices"],
|
|
39
|
+
"properties": {
|
|
40
|
+
"parallelDir": { "type": "string" },
|
|
41
|
+
"dirExists": { "type": "boolean" },
|
|
42
|
+
"sharedExists": { "type": "boolean" },
|
|
43
|
+
"laneFiles": {
|
|
44
|
+
"type": "array",
|
|
45
|
+
"items": { "type": "string" }
|
|
46
|
+
},
|
|
47
|
+
"laneIndices": {
|
|
48
|
+
"type": "array",
|
|
49
|
+
"items": { "type": "integer", "minimum": 1 }
|
|
50
|
+
},
|
|
51
|
+
"missingLaneIndices": {
|
|
52
|
+
"type": "array",
|
|
53
|
+
"items": { "type": "integer", "minimum": 1 }
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
"additionalProperties": true
|
|
57
|
+
},
|
|
58
|
+
"checks": {
|
|
59
|
+
"type": "array",
|
|
60
|
+
"items": {
|
|
61
|
+
"type": "object",
|
|
62
|
+
"required": ["id", "ok", "severity", "message", "hint"],
|
|
63
|
+
"properties": {
|
|
64
|
+
"id": { "type": "string" },
|
|
65
|
+
"ok": { "type": "boolean" },
|
|
66
|
+
"severity": { "type": "string", "enum": ["info", "warn", "error"] },
|
|
67
|
+
"message": { "type": "string" },
|
|
68
|
+
"hint": { "type": "string" }
|
|
69
|
+
},
|
|
70
|
+
"additionalProperties": true
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
"summary": {
|
|
74
|
+
"type": "object",
|
|
75
|
+
"required": ["total", "passed", "failed", "warnings"],
|
|
76
|
+
"properties": {
|
|
77
|
+
"total": { "type": "integer", "minimum": 0 },
|
|
78
|
+
"passed": { "type": "integer", "minimum": 0 },
|
|
79
|
+
"failed": { "type": "integer", "minimum": 0 },
|
|
80
|
+
"warnings": { "type": "integer", "minimum": 0 }
|
|
81
|
+
},
|
|
82
|
+
"additionalProperties": true
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
"additionalProperties": true
|
|
86
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://aiosforge.dev/schemas/parallel-init.schema.json",
|
|
4
|
+
"title": "AIOSON parallel:init --json output",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"required": [
|
|
7
|
+
"ok",
|
|
8
|
+
"targetDir",
|
|
9
|
+
"classification",
|
|
10
|
+
"workers",
|
|
11
|
+
"dryRun",
|
|
12
|
+
"force",
|
|
13
|
+
"generatedAt",
|
|
14
|
+
"files",
|
|
15
|
+
"existingFiles",
|
|
16
|
+
"prerequisites",
|
|
17
|
+
"missingPrerequisites"
|
|
18
|
+
],
|
|
19
|
+
"properties": {
|
|
20
|
+
"ok": { "type": "boolean", "const": true },
|
|
21
|
+
"targetDir": { "type": "string" },
|
|
22
|
+
"classification": { "type": "string" },
|
|
23
|
+
"workers": { "type": "integer", "minimum": 2, "maximum": 6 },
|
|
24
|
+
"dryRun": { "type": "boolean" },
|
|
25
|
+
"force": { "type": "boolean" },
|
|
26
|
+
"generatedAt": { "type": "string" },
|
|
27
|
+
"files": {
|
|
28
|
+
"type": "array",
|
|
29
|
+
"items": { "type": "string" }
|
|
30
|
+
},
|
|
31
|
+
"existingFiles": {
|
|
32
|
+
"type": "array",
|
|
33
|
+
"items": { "type": "string" }
|
|
34
|
+
},
|
|
35
|
+
"prerequisites": {
|
|
36
|
+
"type": "array",
|
|
37
|
+
"items": {
|
|
38
|
+
"type": "object",
|
|
39
|
+
"required": ["path", "exists"],
|
|
40
|
+
"properties": {
|
|
41
|
+
"path": { "type": "string" },
|
|
42
|
+
"exists": { "type": "boolean" }
|
|
43
|
+
},
|
|
44
|
+
"additionalProperties": true
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"missingPrerequisites": {
|
|
48
|
+
"type": "array",
|
|
49
|
+
"items": { "type": "string" }
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
"additionalProperties": true
|
|
53
|
+
}
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://aiosforge.dev/schemas/parallel-status.schema.json",
|
|
4
|
+
"title": "AIOSON parallel:status --json output",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"required": [
|
|
7
|
+
"ok",
|
|
8
|
+
"targetDir",
|
|
9
|
+
"parallelDir",
|
|
10
|
+
"laneCount",
|
|
11
|
+
"statusCounts",
|
|
12
|
+
"scopeCount",
|
|
13
|
+
"blockerCount",
|
|
14
|
+
"deliverables",
|
|
15
|
+
"sharedDecisions",
|
|
16
|
+
"lanes"
|
|
17
|
+
],
|
|
18
|
+
"properties": {
|
|
19
|
+
"ok": { "type": "boolean", "const": true },
|
|
20
|
+
"targetDir": { "type": "string" },
|
|
21
|
+
"parallelDir": { "type": "string" },
|
|
22
|
+
"laneCount": { "type": "integer", "minimum": 1 },
|
|
23
|
+
"statusCounts": {
|
|
24
|
+
"type": "object",
|
|
25
|
+
"required": ["pending", "in_progress", "completed", "blocked", "other"],
|
|
26
|
+
"properties": {
|
|
27
|
+
"pending": { "type": "integer", "minimum": 0 },
|
|
28
|
+
"in_progress": { "type": "integer", "minimum": 0 },
|
|
29
|
+
"completed": { "type": "integer", "minimum": 0 },
|
|
30
|
+
"blocked": { "type": "integer", "minimum": 0 },
|
|
31
|
+
"other": { "type": "integer", "minimum": 0 }
|
|
32
|
+
},
|
|
33
|
+
"additionalProperties": true
|
|
34
|
+
},
|
|
35
|
+
"scopeCount": { "type": "integer", "minimum": 0 },
|
|
36
|
+
"blockerCount": { "type": "integer", "minimum": 0 },
|
|
37
|
+
"deliverables": {
|
|
38
|
+
"type": "object",
|
|
39
|
+
"required": ["completed", "total"],
|
|
40
|
+
"properties": {
|
|
41
|
+
"completed": { "type": "integer", "minimum": 0 },
|
|
42
|
+
"total": { "type": "integer", "minimum": 0 }
|
|
43
|
+
},
|
|
44
|
+
"additionalProperties": true
|
|
45
|
+
},
|
|
46
|
+
"sharedDecisions": {
|
|
47
|
+
"type": "object",
|
|
48
|
+
"required": ["exists", "entries"],
|
|
49
|
+
"properties": {
|
|
50
|
+
"exists": { "type": "boolean" },
|
|
51
|
+
"entries": { "type": "integer", "minimum": 0 }
|
|
52
|
+
},
|
|
53
|
+
"additionalProperties": true
|
|
54
|
+
},
|
|
55
|
+
"lanes": {
|
|
56
|
+
"type": "array",
|
|
57
|
+
"items": {
|
|
58
|
+
"type": "object",
|
|
59
|
+
"required": [
|
|
60
|
+
"lane",
|
|
61
|
+
"file",
|
|
62
|
+
"status",
|
|
63
|
+
"owner",
|
|
64
|
+
"priority",
|
|
65
|
+
"updatedAt",
|
|
66
|
+
"scopeCount",
|
|
67
|
+
"blockerCount",
|
|
68
|
+
"deliverables"
|
|
69
|
+
],
|
|
70
|
+
"properties": {
|
|
71
|
+
"lane": { "type": "integer", "minimum": 1 },
|
|
72
|
+
"file": { "type": "string" },
|
|
73
|
+
"status": { "type": "string" },
|
|
74
|
+
"owner": { "type": "string" },
|
|
75
|
+
"priority": { "type": "string" },
|
|
76
|
+
"updatedAt": { "type": "string" },
|
|
77
|
+
"scopeCount": { "type": "integer", "minimum": 0 },
|
|
78
|
+
"blockerCount": { "type": "integer", "minimum": 0 },
|
|
79
|
+
"deliverables": {
|
|
80
|
+
"type": "object",
|
|
81
|
+
"required": ["completed", "total"],
|
|
82
|
+
"properties": {
|
|
83
|
+
"completed": { "type": "integer", "minimum": 0 },
|
|
84
|
+
"total": { "type": "integer", "minimum": 0 }
|
|
85
|
+
},
|
|
86
|
+
"additionalProperties": true
|
|
87
|
+
}
|
|
88
|
+
},
|
|
89
|
+
"additionalProperties": true
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
"additionalProperties": true
|
|
94
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://aiosforge.dev/schemas/setup-context.schema.json",
|
|
4
|
+
"title": "AIOSON setup:context --json output",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"required": ["ok", "targetDir", "filePath", "data", "classificationScore", "localeApplyResult"],
|
|
7
|
+
"properties": {
|
|
8
|
+
"ok": { "type": "boolean", "const": true },
|
|
9
|
+
"targetDir": { "type": "string" },
|
|
10
|
+
"filePath": { "type": "string" },
|
|
11
|
+
"classificationScore": { "type": "integer", "minimum": 0 },
|
|
12
|
+
"data": {
|
|
13
|
+
"type": "object",
|
|
14
|
+
"required": ["projectName", "projectType", "profile", "framework", "classification", "conversationLanguage", "aiosonVersion"],
|
|
15
|
+
"properties": {
|
|
16
|
+
"projectName": { "type": "string" },
|
|
17
|
+
"projectType": { "type": "string" },
|
|
18
|
+
"profile": { "type": "string" },
|
|
19
|
+
"framework": { "type": "string" },
|
|
20
|
+
"classification": { "type": "string" },
|
|
21
|
+
"conversationLanguage": { "type": "string" },
|
|
22
|
+
"aiosonVersion": { "type": "string" }
|
|
23
|
+
},
|
|
24
|
+
"additionalProperties": true
|
|
25
|
+
},
|
|
26
|
+
"localeApplyResult": {
|
|
27
|
+
"type": "object",
|
|
28
|
+
"required": ["locale", "copied", "missing", "dryRun"],
|
|
29
|
+
"properties": {
|
|
30
|
+
"locale": { "type": "string" },
|
|
31
|
+
"copied": { "type": "array" },
|
|
32
|
+
"missing": { "type": "array" },
|
|
33
|
+
"dryRun": { "type": "boolean" }
|
|
34
|
+
},
|
|
35
|
+
"additionalProperties": true
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
"additionalProperties": true
|
|
39
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://aiosforge.dev/schemas/smoke.schema.json",
|
|
4
|
+
"title": "AIOSON test:smoke --json output",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"required": ["ok", "language", "targetDir", "web3Target", "profile", "steps", "stepCount", "workspaceRoot", "projectDir", "kept"],
|
|
7
|
+
"properties": {
|
|
8
|
+
"ok": { "type": "boolean", "const": true },
|
|
9
|
+
"language": { "type": "string" },
|
|
10
|
+
"targetDir": { "type": "string" },
|
|
11
|
+
"web3Target": { "type": ["string", "null"] },
|
|
12
|
+
"profile": { "type": "string", "enum": ["standard", "mixed", "parallel"] },
|
|
13
|
+
"steps": {
|
|
14
|
+
"type": "array",
|
|
15
|
+
"items": { "type": "string" }
|
|
16
|
+
},
|
|
17
|
+
"stepCount": { "type": "integer", "minimum": 0 },
|
|
18
|
+
"workspaceRoot": { "type": "string" },
|
|
19
|
+
"projectDir": { "type": "string" },
|
|
20
|
+
"kept": { "type": "boolean" }
|
|
21
|
+
},
|
|
22
|
+
"additionalProperties": true
|
|
23
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://aiosforge.dev/schemas/update.schema.json",
|
|
4
|
+
"title": "AIOSON update --json output",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"required": ["ok", "targetDir", "existingInstall", "copied", "skipped", "backedUp", "dryRun", "localeSync"],
|
|
7
|
+
"properties": {
|
|
8
|
+
"ok": { "type": "boolean", "const": true },
|
|
9
|
+
"targetDir": { "type": "string" },
|
|
10
|
+
"existingInstall": { "type": "boolean" },
|
|
11
|
+
"copied": {
|
|
12
|
+
"type": "array",
|
|
13
|
+
"items": { "type": "string" }
|
|
14
|
+
},
|
|
15
|
+
"skipped": {
|
|
16
|
+
"type": "array",
|
|
17
|
+
"items": {
|
|
18
|
+
"type": "object",
|
|
19
|
+
"required": ["path", "reason"],
|
|
20
|
+
"properties": {
|
|
21
|
+
"path": { "type": "string" },
|
|
22
|
+
"reason": { "type": "string" }
|
|
23
|
+
},
|
|
24
|
+
"additionalProperties": true
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"backedUp": {
|
|
28
|
+
"type": "array",
|
|
29
|
+
"items": { "type": "string" }
|
|
30
|
+
},
|
|
31
|
+
"dryRun": { "type": "boolean" },
|
|
32
|
+
"localeSync": {
|
|
33
|
+
"type": ["object", "null"],
|
|
34
|
+
"required": ["locale", "copied", "missing", "dryRun"],
|
|
35
|
+
"properties": {
|
|
36
|
+
"locale": { "type": "string" },
|
|
37
|
+
"copied": { "type": "array" },
|
|
38
|
+
"missing": {
|
|
39
|
+
"type": "array",
|
|
40
|
+
"items": { "type": "string" }
|
|
41
|
+
},
|
|
42
|
+
"dryRun": { "type": "boolean" }
|
|
43
|
+
},
|
|
44
|
+
"additionalProperties": true
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"additionalProperties": true
|
|
48
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://aiosforge.dev/schemas/workflow-plan.schema.json",
|
|
4
|
+
"title": "AIOSON workflow:plan --json output",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"required": ["ok", "targetDir", "contextExists", "contextParsed", "classification", "sequence", "commands", "notes"],
|
|
7
|
+
"properties": {
|
|
8
|
+
"ok": { "type": "boolean", "const": true },
|
|
9
|
+
"targetDir": { "type": "string" },
|
|
10
|
+
"contextExists": { "type": "boolean" },
|
|
11
|
+
"contextParsed": { "type": "boolean" },
|
|
12
|
+
"classification": {
|
|
13
|
+
"type": "string",
|
|
14
|
+
"enum": ["MICRO", "SMALL", "MEDIUM"]
|
|
15
|
+
},
|
|
16
|
+
"sequence": {
|
|
17
|
+
"type": "array",
|
|
18
|
+
"items": { "type": "string" }
|
|
19
|
+
},
|
|
20
|
+
"commands": {
|
|
21
|
+
"type": "array",
|
|
22
|
+
"items": { "type": "string" }
|
|
23
|
+
},
|
|
24
|
+
"notes": {
|
|
25
|
+
"type": "array",
|
|
26
|
+
"items": { "type": "string" }
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"additionalProperties": true
|
|
30
|
+
}
|
package/docs/en/web3.md
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# Web3 Support
|
|
2
|
+
|
|
3
|
+
AIOSON includes lightweight Web3 support for small and medium teams using JavaScript/TypeScript workflows.
|
|
4
|
+
|
|
5
|
+
## Supported framework detection
|
|
6
|
+
- Ethereum: `Hardhat`, `Foundry`, `Truffle`
|
|
7
|
+
- Solana: `Anchor`, `Solana Web3`
|
|
8
|
+
- Cardano: `Cardano` (Aiken and Cardano SDK dependency signals)
|
|
9
|
+
|
|
10
|
+
## Context contract for dApps
|
|
11
|
+
`project_type` accepts `dapp`, and setup can include:
|
|
12
|
+
- `web3_enabled`
|
|
13
|
+
- `web3_networks`
|
|
14
|
+
- `contract_framework`
|
|
15
|
+
- `wallet_provider`
|
|
16
|
+
- `indexer`
|
|
17
|
+
- `rpc_provider`
|
|
18
|
+
|
|
19
|
+
## Setup examples
|
|
20
|
+
```bash
|
|
21
|
+
# Interactive
|
|
22
|
+
aioson setup:context
|
|
23
|
+
|
|
24
|
+
# Defaults with explicit Web3 options
|
|
25
|
+
aioson setup:context . \
|
|
26
|
+
--defaults \
|
|
27
|
+
--project-type=dapp \
|
|
28
|
+
--framework=Hardhat \
|
|
29
|
+
--web3-enabled=true \
|
|
30
|
+
--web3-networks=ethereum \
|
|
31
|
+
--contract-framework=Hardhat \
|
|
32
|
+
--wallet-provider=wagmi \
|
|
33
|
+
--indexer="The Graph" \
|
|
34
|
+
--rpc-provider=Alchemy
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
## Web3 smoke checks
|
|
38
|
+
```bash
|
|
39
|
+
aioson test:smoke --web3=ethereum
|
|
40
|
+
aioson test:smoke --web3=solana
|
|
41
|
+
aioson test:smoke --web3=cardano
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
## Skills bundled in templates
|
|
45
|
+
- Static:
|
|
46
|
+
- `web3-ethereum-patterns.md`
|
|
47
|
+
- `web3-solana-patterns.md`
|
|
48
|
+
- `web3-cardano-patterns.md`
|
|
49
|
+
- `web3-security-checklist.md`
|
|
50
|
+
- `node-typescript-patterns.md`
|
|
51
|
+
- Dynamic:
|
|
52
|
+
- `ethereum-docs.md`
|
|
53
|
+
- `solana-docs.md`
|
|
54
|
+
- `cardano-docs.md`
|