@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
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,456 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
## [Unreleased]
|
|
6
|
+
|
|
7
|
+
## [1.3.0] - 2026-03-15
|
|
8
|
+
### Added
|
|
9
|
+
- Canonical runtime observability for installed projects: runtime SQLite now acts as the primary execution store with task/run/event lifecycle tracking, workflow event synchronization, and an execution gateway prepared to instrument direct agent entrypoints, workflow enforcement, squads, and operational runs from the project runtime itself.
|
|
10
|
+
- `docs/pt/comandos-cli.md`: first Portuguese-first CLI reference page covering all public `aioson` commands with grouped descriptions, command map, examples, and practical usage recipes. Linked from `docs/pt/README.md` and `docs/pt/inicio-rapido.md`.
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- Full product rebrand from `aios-forge` to `aioson` across package metadata, CLI branding, docs, templates, prompts, tests, runtime paths, and generated project structure. The managed project directory is now `.aioson/` instead of `.aios-forge/`.
|
|
14
|
+
- npm distribution moved to the scoped package `@jaimevalasek/aioson` after the unscoped `aioson` name was rejected by npm for similarity policy reasons. Install and `npx` docs now use the scoped package while the installed CLI commands remain `aioson` and `aios`.
|
|
15
|
+
- Release description updated to `AI operating framework for hyper-personalized software.` to match the current platform direction.
|
|
16
|
+
- Legacy `dashboard:*` CLI flow removed from the public surface. `aioson dashboard:init|dev|open` no longer appear in help or docs; if called, the CLI now returns a migration error instructing users to open the separately installed dashboard app and select the project folder that already contains `.aioson/`. Updated pt docs and agent guidance to match the new app-first dashboard flow.
|
|
17
|
+
- `template/.aioson/skills/static/interface-design.md`: upgraded the interface-design craft guide by merging strengths from the upstream `interface-design` skill without losing AIOSON workflow fit. Added persistent design memory via `.interface-design/system.md`, existing-UI refinement rules (diagnose drift before re-theme), two fully specified directions (`Sophistication & Trust`, `Premium Dark Platform`), a mandatory pre-component decision checkpoint, and explicit memory update guidance for reusable UI patterns.
|
|
18
|
+
|
|
19
|
+
## [0.1.28] - 2026-03-04
|
|
20
|
+
### Added
|
|
21
|
+
- **`scan:project` command** (`aioson scan:project [path] [--provider=<name>] [--dry-run] [--json]`): Node.js port of the brownfield project scanner, replacing `aioson-scan.py`. Walks the project, reads key files, calls a cheap LLM (multi-provider), and generates `discovery.md` + `skeleton-system.md`. Zero npm dependencies — uses `node:fs`, `node:https`, `node:http` only.
|
|
22
|
+
- Multi-provider HTTP client supporting OpenAI-compatible format (DeepSeek, OpenAI, Gemini, Groq, Together, Mistral) and Anthropic native format. Configured via `aioson-models.json` (same config file as before).
|
|
23
|
+
- `--provider=<name>` flag to override `preferred_scan_provider` from config at runtime.
|
|
24
|
+
- `--dry-run` mode: walks the project and reports file counts without calling the LLM.
|
|
25
|
+
- i18n keys for `scan_project` section in all 4 locales (en, pt-BR, es, fr).
|
|
26
|
+
- `install` hint message updated in all 4 locales: `python aioson-scan.py` → `aioson scan:project`.
|
|
27
|
+
|
|
28
|
+
### Removed
|
|
29
|
+
- `template/aioson-scan.py`: Python scanner removed from the template. `aioson scan:project` is the normalized replacement. The `aioson-models.json` config file (provider API keys) is unchanged.
|
|
30
|
+
|
|
31
|
+
### Changed
|
|
32
|
+
- All 15 template agent files (analyst, dev, orchestrator — base + 4 locales each): `python aioson-scan.py` replaced with `aioson scan:project` in brownfield detection hints.
|
|
33
|
+
|
|
34
|
+
## [0.1.27] - 2026-03-04
|
|
35
|
+
### Added
|
|
36
|
+
- **HTML reports** for browser QA: `--html` flag added to `qa:run`, `qa:scan`, and `qa:report`. Generates a self-contained visual report in `reports/<date>_<time>_<mode>/index.html`. Screenshots embedded as base64 — fully portable for sharing. Existing `aios-qa-report.md` and `aios-qa-report.json` outputs are never modified; HTML is purely additive.
|
|
37
|
+
- `reports/index.html`: historical index auto-updated after each HTML run, listing all runs with date, mode, URL, and severity badges. Sorted newest first.
|
|
38
|
+
- `qa:report --html`: retroactively generates HTML from the existing `aios-qa-report.json` without re-running Playwright.
|
|
39
|
+
- HTML report features: severity filter buttons, collapsible finding cards (location + risk + fix + screenshot), performance cards with colour-coded thresholds, AC coverage table, routes list (scan mode), click-to-zoom screenshot lightbox, vanilla JS (no framework).
|
|
40
|
+
- `src/qa-html-report.js`: self-contained HTML generator module with embedded CSS and JS, `writeHtmlReport()` and `updateReportsIndex()` exports.
|
|
41
|
+
- i18n key `html_report_written` added to `qa_run`, `qa_scan`, `qa_report` sections in all 4 locales (en, pt-BR, es, fr).
|
|
42
|
+
- Missing `help_qa_*` i18n keys added to pt-BR locale (were absent; es/fr fall back to en).
|
|
43
|
+
- `docs/en/qa-browser.md`: `--html` flag documented for all three commands, plus a new **HTML reports** section describing folder structure, features, and `qa:report --html` retroactive mode.
|
|
44
|
+
- README: `--html` flag added to Browser QA command signatures and Agent usage helper examples.
|
|
45
|
+
|
|
46
|
+
## [0.1.26] - 2026-03-04
|
|
47
|
+
### Added
|
|
48
|
+
- **Browser QA engine** (`qa:init`, `qa:doctor`, `qa:run`, `qa:scan`, `qa:report`): full Playwright-powered browser testing built into aioson. No LLM required. No separate tool. Playwright is an optional runtime dependency — zero impact on users who don't need browser testing.
|
|
49
|
+
- `qa:init`: generates `aios-qa.config.json` by reading `prd.md` (acceptance criteria → test scenarios) and `discovery.md` (business rules). URL auto-resolved from `project.context.md`.
|
|
50
|
+
- `qa:doctor`: validates all prerequisites (Playwright installed, Chromium binary, config valid, URL reachable, context and prd.md present).
|
|
51
|
+
- `qa:run`: full QA session with 4 personas: **naive** (empty forms, 10K strings, ghost clickables), **hacker** (8 secret patterns against window globals and HTML source, 10 sensitive file paths, XSS, open redirect, SQL injection, IDOR ±1, debug routes), **power** (keyboard navigation focus visibility, boundary values on numeric/date inputs), **mobile** (375px viewport, horizontal overflow, touch targets < 44px, fonts < 12px). Post-persona: network-level probes (console stack traces, sensitive GET params, mixed content). Accessibility audit (5 WCAG checks). Performance capture (TTFB, load time, request count, transfer size). AC coverage from `prd.md` with screenshots. Output: `aios-qa-report.md` + `aios-qa-report.json` + `aios-qa-screenshots/`.
|
|
52
|
+
- `qa:scan`: autonomous crawler — maps all routes via BFS (configurable depth and max pages), probes each route for exposed secrets, console leaks, accessibility issues, and horizontal overflow. Sensitive files probed once per domain.
|
|
53
|
+
- `qa:report`: displays last generated report; `--json` returns parsed `aios-qa-report.json`.
|
|
54
|
+
- `@qa` agent (base + all 4 locales) updated with browser report integration rules: if `aios-qa-report.md` exists, merge findings, promote severity when both static review and browser test flag the same issue, tag ACs as `[browser-validated]`.
|
|
55
|
+
- i18n keys added for `qa_doctor`, `qa_init`, `qa_run`, `qa_scan`, `qa_report` sections across all 4 locales (en, pt-BR, es, fr).
|
|
56
|
+
- `docs/en/qa-browser.md`: full reference for all 5 qa: commands with examples, persona descriptions, probe list, performance thresholds, CI integration patterns.
|
|
57
|
+
- README updated: Browser QA section in Commands, Agent usage helper, JSON output, and Docs feature guides — all with links to `docs/en/qa-browser.md`.
|
|
58
|
+
|
|
59
|
+
## [0.1.25] - 2026-03-04
|
|
60
|
+
### Added
|
|
61
|
+
- `@product` agent: conversational product wizard that runs between `@setup` and `@analyst`. Starts from a raw idea and leads a natural back-and-forth conversation (8 strict conversation rules: one question at a time, no filler words, reflect before advancing, surface forgotten requirements, challenge assumptions gently, prioritize ruthlessly, draft early after 5–7 exchanges). Supports two modes: creation (no prd.md) and enrichment (prd.md exists). Produces `.aioson/context/prd.md` with 8 sections: vision, problem, users, MVP scope (🔴 must-have / 🟡 should-have), out-of-scope, user flows, success metrics, open questions.
|
|
62
|
+
- `template/.aioson/agents/product.md`: base agent file.
|
|
63
|
+
- `template/.aioson/locales/en/agents/product.md`, `pt-BR/agents/product.md`, `es/agents/product.md`, `fr/agents/product.md`: localized variants with absolute language instruction at top.
|
|
64
|
+
- `template/.gemini/commands/aios-product.toml`: Gemini command registration.
|
|
65
|
+
- Workflow chains updated in `config.md`: MICRO = `@setup → @product (optional) → @dev`; SMALL = `@setup → @product → @analyst → @architect → @dev → @qa`; MEDIUM = `@setup → @product → @analyst → @architect → @ux-ui → @pm → @orchestrator → @dev → @qa`.
|
|
66
|
+
- `@product` added to `CLAUDE.md` agent routing, `AGENTS.md` invocation table and file list.
|
|
67
|
+
- `setup.md` routing table updated in all 5 locale files to route to `@product` after setup instead of directly to `@analyst`.
|
|
68
|
+
- `src/constants.js`: `@product` added to `MANAGED_FILES` (base + 4 locale paths + toml) and `AGENT_DEFINITIONS` (before `@analyst`, empty `dependsOn`, output `prd.md`).
|
|
69
|
+
|
|
70
|
+
## [0.1.24] - 2026-03-04
|
|
71
|
+
### Added
|
|
72
|
+
- `skeleton-system.md`: new lightweight living index generated by `aioson-scan.py` alongside `discovery.md`. Contains file map with status indicators (✓/◑/○), key routes, module status table, and entity relationships. Designed to be read first as a cheap orientation before loading heavier context files.
|
|
73
|
+
- Scanner now generates both `discovery.md` and `skeleton-system.md` in a single LLM call, split by `<<<SKELETON>>>` delimiter. If the delimiter is missing, only `discovery.md` is written with a warning.
|
|
74
|
+
- `@dev` (base + en/pt-BR/es/fr): `skeleton-system.md` added to required input (read first). Auto-update rule: update skeleton entries when creating/deleting/modifying files. New `*update-skeleton` command to rewrite the full skeleton after a development session.
|
|
75
|
+
- `@analyst` (base + en/pt-BR/es/fr): brownfield pre-flight now reads `skeleton-system.md` first for quick orientation before diving into `discovery.md`.
|
|
76
|
+
- `@orchestrator` (base + en/pt-BR/es/fr): session start now reads `skeleton-system.md` as step 2 (before discovery.md).
|
|
77
|
+
|
|
78
|
+
## [0.1.23] - 2026-03-04
|
|
79
|
+
### Added
|
|
80
|
+
- `template/aioson-scan.py`: standalone Python scanner (zero external dependencies, stdlib only). Walks the project tree, reads up to 12 key files (package.json, composer.json, schema.prisma, routes/web.php, etc.), reads `project.context.md` and `spec.md` if present, then calls a cheap LLM API (DeepSeek, Gemini, OpenAI, Anthropic, Groq, Together, or Mistral) to generate `.aioson/context/discovery.md` with 9 structured sections. Saves main-session tokens on brownfield projects.
|
|
81
|
+
- `template/aioson-models.json`: API key config template for 7 providers. Auto-added to `.gitignore` on install to prevent key commits.
|
|
82
|
+
- Brownfield project detection in installer: when `framework_installed` is detected and the project has >20 files, `install` and `update` now emit an alert with instructions to run `aioson-scan.py` first.
|
|
83
|
+
- `@analyst` (base + en/pt-BR/es/fr): **Brownfield pre-flight** section — checks `framework_installed`, skips Phases 1–3 if `discovery.md` already exists, alerts the user to run the scanner if it is missing. Rule enforced: always read `spec.md` alongside `discovery.md`.
|
|
84
|
+
- `@dev` (base + en/pt-BR/es/fr): **Brownfield alert** section — if `framework_installed=true` and `discovery.md` is missing, alerts the user to run `aioson-scan.py` before proceeding.
|
|
85
|
+
- `@orchestrator` (base + en/pt-BR/es/fr): session start now reads `discovery.md` AND `spec.md` together at session open, with brownfield alert when `discovery.md` is absent.
|
|
86
|
+
|
|
87
|
+
## [0.1.22] - 2026-03-04
|
|
88
|
+
### Fixed
|
|
89
|
+
- `setup:context` command: `--lang=pt-BR` (and any `--lang` alias) was silently ignored — `applyExplicitOverrides` only read `options.language` but the parser stores the flag as `options.lang`. Fixed by reading `options.language ?? options.lang`, consistent with all other commands (`install`, `update`, `init`, `locale-apply`, etc.). Running `npx aioson setup:context . --defaults --lang=pt-BR` now correctly installs the pt-BR locale agents.
|
|
90
|
+
|
|
91
|
+
## [0.1.21] - 2026-03-03
|
|
92
|
+
### Changed
|
|
93
|
+
- `@ux-ui` Step 0 (base + en/pt-BR/es/fr locales): added **Option C — Default / Skip** to the visual style question. When chosen, the agent skips style confirmation and goes directly to Step 1 using `interface-design.md` as the sole design authority, letting domain exploration drive the visual direction organically. Accepted inputs: C / skip / pular / saltar / passer / padrão / default.
|
|
94
|
+
|
|
95
|
+
## [0.1.20] - 2026-03-03
|
|
96
|
+
### Added
|
|
97
|
+
- `template/.aioson/skills/static/react-motion-patterns.md`: new skill with React/Next.js equivalents of the wow effects from `static-html-patterns.md`. Covers 10 patterns: animated mesh background, animated gradient text, scroll reveal (Framer Motion + Intersection Observer fallback), 3D card tilt hook, hero staggered entrance, infinite logo marquee, scroll progress bar, glassmorphism card, floating orbs, and page transition. All patterns include `prefers-reduced-motion` fallback and touch-device guards.
|
|
98
|
+
- Laravel installation links to `skills/dynamic/laravel-docs.md`: three-path table (Herd/standard, Sail/Docker, Jetstream+Livewire) with specific URLs, detection signals per stack, and Livewire v3 MCP fetch example.
|
|
99
|
+
|
|
100
|
+
### Changed
|
|
101
|
+
- `template/.aioson/skills/static/laravel-conventions.md`: added project folder structure tree, naming convention table (13 artefacts, singular/plural rules), and Livewire component section with `#[Computed]`, `wire:model.live`, classic controller variant, and coexistence rule.
|
|
102
|
+
- `@dev` agent (base + en/pt-BR/es/fr locales): added **Motion and animation** section — when `framework=React|Next.js`, agent now reads `react-motion-patterns.md` before implementing animations. Framer Motion as primary, CSS `@keyframes` as fallback. Hard rule against heavy motion in admin/CRUD interfaces.
|
|
103
|
+
- `@dev` agent (base + en/pt-BR/es/fr locales): added Laravel project structure layout block and singular/plural naming rules to the Laravel conventions section.
|
|
104
|
+
|
|
105
|
+
## [0.1.19] - 2026-03-03
|
|
106
|
+
### Added
|
|
107
|
+
- `src/commands/test-agents.js`: new `test:agents` CLI command — 99 structural checks across all 8 base agents and all locale files (32 base checks + 64 locale checks + 3 critical skill checks). Validates: file existence, `## Mission` section, `## Hard constraints` section, `.md-only` context rule, and language instruction within first 15 lines of each locale agent.
|
|
108
|
+
- `src/commands/locale-diff.js`: new `locale:diff` CLI command — compares `##` heading structure of base agent files vs locale translations, normalizes headings (strips accents for cross-language comparison), and reports sections present in base but missing in locale. Supports `--lang` filter and single-agent argument.
|
|
109
|
+
- `template/.aioson/skills/static/django-patterns.md`: comprehensive Django conventions skill (342 lines) — project structure, `TimestampMixin`, service layer, DRF serializers, URL namespacing, settings split (base/dev/prod), Admin registration, `pytest-django` test patterns, N+1 prevention rules.
|
|
110
|
+
- `template/.aioson/skills/static/fastapi-patterns.md`: comprehensive FastAPI conventions skill (344 lines) — async project structure, `pydantic-settings`, SQLAlchemy async engine, Pydantic input/output schema separation, service layer, JWT via `HTTPBearer`, Alembic migrations, `pytest + httpx AsyncClient` patterns.
|
|
111
|
+
- `template/.aioson/skills/dynamic/README.md`: explains static vs dynamic skills pattern and lists all 6 dynamic skill files with their source URLs.
|
|
112
|
+
|
|
113
|
+
### Changed
|
|
114
|
+
- `@dev` agent (base + en/pt-BR/es/fr locales): `architecture.md` and `discovery.md` now marked as `*(SMALL/MEDIUM only)*` in Required input. Added explicit MICRO callout — only `project.context.md` is guaranteed for MICRO projects.
|
|
115
|
+
- `@orchestrator` base agent: renamed `## Rules` → `## Hard constraints` for consistency with all other agents.
|
|
116
|
+
- `@dev`, `@qa`, `@orchestrator` base agents: added `.md-only` context rule (was missing — `test:agents` detected the gap).
|
|
117
|
+
- Locale `en` agents (analyst, architect, pm, ux-ui, dev, qa, orchestrator): added ABSOLUTE INSTRUCTION language marker at top (was missing in en locale — `test:agents` detected the gap).
|
|
118
|
+
- All 6 dynamic skill stubs expanded with concrete source URLs, focus areas, and MCP tool fetch examples to replace the minimal placeholder content.
|
|
119
|
+
|
|
120
|
+
## [0.1.18] - 2026-03-03
|
|
121
|
+
### Fixed
|
|
122
|
+
- Language bug: locale agent files (pt-BR, es, fr) were responding in English even after `aioson install --lang=<locale>` because the language rule was at the bottom of each file. LLMs process top-to-bottom and would default to English before reading the rule.
|
|
123
|
+
- Added `> **⚠ ABSOLUTE INSTRUCTION — LANGUAGE**` blockquote as the **first content after the title** in all 8 agents across all 3 locales (pt-BR, es, fr) + en locale (24 files total). Instruction explicitly forbids English and names the target language before any mission, sequence, or detection logic runs.
|
|
124
|
+
- `@ux-ui` output contract: HTML deliverable was being saved to `.aioson/context/landing-preview.html` instead of the project root. Fixed to `index.html` in the project root across all 5 ux-ui files (base + en/pt-BR/es/fr locales).
|
|
125
|
+
|
|
126
|
+
## [0.1.17] - 2026-03-03
|
|
127
|
+
### Added
|
|
128
|
+
- `static-html-patterns.md` Section 0 — **Hero Law**: explicit rule that the hero MUST be full-viewport animated background + ONE headline + TWO buttons. Cards in the hero are forbidden.
|
|
129
|
+
- `static-html-patterns.md` Section 2a-extra — **Mandatory Wow Techniques** for Bold & Cinematic (three required, not optional):
|
|
130
|
+
- Animated mesh background (`@keyframes meshDrift 20s`) — static gradients replaced
|
|
131
|
+
- Animated gradient text (`@keyframes textGradient 8s`) on headline `<em>` key phrase
|
|
132
|
+
- 3D card tilt on hover (`perspective(700px) rotateX/rotateY` on `mousemove`, skipped on touch + reduced motion)
|
|
133
|
+
- `@setup` agent (base + all 4 locales) — **Step 3: Next agent guidance** appended to Post-setup action. Agent now closes by explicitly naming the next `@agent` based on `project_type` + `classification`, using the exact `@name` format so AI clients (Codex, Claude Code, Gemini) can trigger it.
|
|
134
|
+
- `@setup` pt-BR/es/fr/en locales — spec.md skip hint for `project_type=site` + MICRO classification.
|
|
135
|
+
|
|
136
|
+
### Changed
|
|
137
|
+
- `@ux-ui` Step 0 (base + en/pt-BR/es/fr locales) — upgraded from "ask one question" to **HARD STOP blocking gate**: agent must not read files, write HTML/CSS, or proceed to Step 1 until user answers the visual style question.
|
|
138
|
+
- `@ux-ui` Landing page mode (base + all locales) — added **Hero Law** constraint and **Mandatory Wow Techniques** section explicitly referencing the three required animations.
|
|
139
|
+
- `@ux-ui` es/fr locales — **full rewrite** to match the updated base agent: added Step 0 (visual style intake), landing page mode, hero law, mandatory wow techniques, full output contract.
|
|
140
|
+
|
|
141
|
+
## [0.1.16] - 2026-03-03
|
|
142
|
+
### Added
|
|
143
|
+
- `template/.aioson/skills/static/static-html-patterns.md`: new **Section 14 — Premium Template Patterns (Aigocy-style)** with 10 production patterns extracted from a real AI-agency landing page (ThemeForest #61450410):
|
|
144
|
+
- **14a. effectFade animations**: `fadeUp` and `fadeRotateX` (3D perspective entrance) with `data-delay` stagger pattern for GSAP
|
|
145
|
+
- **14b. Infinite logo marquee**: CSS-only `@keyframes infiniteSlide` with auto-clone JS and hover-pause for accessibility
|
|
146
|
+
- **14c. SVG animated paths**: SMIL `<animateMotion>` hub-and-spoke diagram connecting icons to a center product image
|
|
147
|
+
- **14d. Scroll-to-top with circular progress**: CSS `stroke-dashoffset` progress ring updated by scroll JS
|
|
148
|
+
- **14e. Split Swiper**: synchronized text + image sliders with `effect: 'fade'` and `slideTo()` binding
|
|
149
|
+
- **14f. Swiper progress bar navigation**: thin animated fill bar replacing pagination dots for portfolio sliders
|
|
150
|
+
- **14g. box-white / box-black section alternation**: CSS pseudo-element radial glow replacing decorative PNG images
|
|
151
|
+
- **14h. Accordion FAQ**: native `<details>`/`<summary>` version with `rotate(45deg)` icon transition
|
|
152
|
+
- **14i. Footer with watermark background logo**: faded brand name in `position: absolute` behind 3-column dense footer
|
|
153
|
+
- **14j. Canvas cursor trail**: fading dot trail on `mousemove`, skipped on touch devices and `prefers-reduced-motion`
|
|
154
|
+
- Section 13 pre-delivery checklist: added "No placeholder text remains" item
|
|
155
|
+
|
|
156
|
+
### Changed
|
|
157
|
+
- `@setup` agent output template (`aioson_version`) bumped to `0.1.16` across all locales (en, pt-BR, es, fr) and base agent file
|
|
158
|
+
|
|
159
|
+
## [0.1.12] - 2026-03-02
|
|
160
|
+
### Added
|
|
161
|
+
- New static skill: `template/.aioson/skills/static/interface-design.md` — a comprehensive UI/UX craft guide derived from the interface-design project, covering: Intent-First Framework (3 mandatory questions before any layout), Domain Exploration (4 required outputs: domain concepts, color world, signature element, defaults to avoid), 6 design directions with full token specs (Precision & Density, Warmth & Approachability, Data & Analysis, Editorial, Commerce, Minimal & Calm), complete token architecture (foreground/background/border/brand/semantic roles), depth strategy (commit to ONE), component state matrix, 4 quality checks (swap/squint/signature/token tests), self-critique process (composition → craft → content → structure).
|
|
162
|
+
- Portuguese documentation at `docs/pt/`:
|
|
163
|
+
- `README.md`: index linking all guides.
|
|
164
|
+
- `inicio-rapido.md`: quick start with install commands, classification scoring, and 3-command setup.
|
|
165
|
+
- `agentes.md`: per-agent reference with when-to-use, activation command, what it delivers, and concrete examples.
|
|
166
|
+
- `cenarios.md`: 4 complete worked examples — MICRO (landing page), SMALL (Laravel clinic API with @analyst output, @architect folder structure, @dev code), MEDIUM (Next.js SaaS with 3-lane parallel orchestration), MEDIUM dApp (Ethereum NFT marketplace with Solidity contract example).
|
|
167
|
+
- `web3.md`: Portuguese Web3 guide covering setup flags for Ethereum/Solana/Cardano, monorepo structure, per-agent Web3 conventions, and skill reference.
|
|
168
|
+
|
|
169
|
+
### Changed
|
|
170
|
+
- `@ux-ui` agent (base + all 4 locales: en/pt-BR/es/fr): mandatory pre-work now references `interface-design.md` skill, adds Intent-First step, Domain Exploration step (4 required outputs), single design direction declaration, 4 quality checks (swap/squint/signature/token tests), and self-critique gate before delivery. Output contract expanded with focal point, reading order, full state matrix, and handoff notes for signature visual moves.
|
|
171
|
+
- `workflow:plan` sequences corrected: `@ux-ui` now included in SMALL (`setup → analyst → architect → ux-ui → dev → qa`) and MEDIUM (`setup → analyst → architect → ux-ui → pm → orchestrator → dev → qa`), matching `config.md` and agent documentation.
|
|
172
|
+
- 13 static skills expanded from 5–7 stub lines to 200–337 lines of production-grade, code-first references:
|
|
173
|
+
- `laravel-conventions`: controllers as orchestrators, Form Requests, Actions, Policies, Events+queued Listeners, Jobs, API Resources, N+1 prevention, Model conventions, Migrations, Pest tests.
|
|
174
|
+
- `tall-stack-patterns`: Livewire lifecycle + real-time validation, inter-component events, lazy loading, Alpine.js scope rules, Tailwind design system discipline, full Flux UI examples (button/modal/table/dropdown/sidebar).
|
|
175
|
+
- `filament-patterns`: Resource structure (form/table/filters/actions), custom Pages, Stats Widgets, Relation Managers, policy enforcement, advanced form fields (repeater, conditional, file upload), business logic delegation.
|
|
176
|
+
- `flux-ui-components`: full component inventory, buttons (all variants + loading states), form field group, modal with programmatic control, dropdown menus, table with sort + empty state, badges, sidebar navigation.
|
|
177
|
+
- `jetstream-setup`: Inertia vs Blade decision matrix, Teams with roles/permissions, API tokens, profile customization, 2FA, password confirmation middleware, post-install checklist.
|
|
178
|
+
- `git-conventions`: full Conventional Commits spec with type table + examples, Git Flow vs GitHub Flow, branch naming, PR template, tagging, protected history rules.
|
|
179
|
+
- `nextjs-patterns`: Server vs Client mental model, App Router structure, async Server Components, Server Actions with Zod, Client Components (when/why), Route Handlers for webhooks only, metadata/SEO, loading.tsx + error.tsx.
|
|
180
|
+
- `node-express-patterns`: layered architecture (routes/controllers/services/repositories), Zod validation middleware, typed auth + role checking, AppError class hierarchy, centralized error handler, rate limiting, graceful shutdown.
|
|
181
|
+
- `node-typescript-patterns`: strict tsconfig baseline, Zod at all external boundaries, env validation at startup, branded domain types for IDs, const-object enums, repository interface pattern, explicit return types, asyncHandler.
|
|
182
|
+
- `rails-conventions`: Service Objects with Result type, model scopes/enums/validations, Active Record N+1 prevention, async Jobs with retry, Mailer patterns, serializers, Pundit authorization, RSpec request + unit specs.
|
|
183
|
+
- `web3-ethereum-patterns`: CEI pattern, ReentrancyGuard, pull over push, AccessControl roles, gas optimization (struct packing, custom errors), Hardhat test patterns with loadFixture, wagmi v2 frontend integration, deployment scripts.
|
|
184
|
+
- `web3-solana-patterns`: eUTxO/account model, Anchor program structure, account data with LEN, PDA seeds + bump storage, CPI signing, Anchor constraints, compute budget management, full Anchor test suite.
|
|
185
|
+
- `web3-cardano-patterns`: eUTxO mental model, Aiken project structure, datum/redeemer type design, spending validator, minting policy, Aiken tests, off-chain with Lucid, datum versioning strategy, deployment checklist.
|
|
186
|
+
- `web3-security-checklist`: 7 critical vulnerabilities with code examples (reentrancy, access control, integer overflow, oracle manipulation, flash loans, front-running, signature replay), pre-deployment checklist (static analysis/fuzzing/invariant tests/multisig/timelock), emergency response protocol.
|
|
187
|
+
|
|
188
|
+
### Fixed
|
|
189
|
+
- `workflow:plan` was silently omitting `@ux-ui` from SMALL and MEDIUM sequences despite `config.md` and all agent documentation specifying it as a required step. Fixed in `src/commands/workflow-plan.js` and updated `tests/workflow-plan.test.js`.
|
|
190
|
+
|
|
191
|
+
## [0.1.11] - 2026-03-02
|
|
192
|
+
### Added
|
|
193
|
+
- Agent prompt enrichment across all 8 agents:
|
|
194
|
+
- `@analyst`: 6 concrete Phase 1 discovery questions, entity deep-dive example (scheduling system), field-level table format for Phase 3, `Visual references` and `Risks identified` output sections, responsibility boundary note.
|
|
195
|
+
- `@architect`: concrete folder/module structure trees for MICRO/SMALL/MEDIUM across Laravel (TALL), Node/Express, Next.js (App Router), and dApp (Hardhat/Foundry/Anchor) stacks.
|
|
196
|
+
- `@pm`: explicit 2-page golden rule with cut-ruthlessly instruction, when-to-use guidance (SMALL/MEDIUM only, skip MICRO), exact `prd.md` section template.
|
|
197
|
+
- `@dev`: Laravel ALWAYS/NEVER convention list (Form Requests, Actions, Policies, Events+Listeners, Jobs, Resources, N+1 prevention), UI/UX conventions, Web3 guards for dApp projects, semantic commit format with examples, responsibility boundary note.
|
|
198
|
+
- `@orchestrator`: MEDIUM-only activation condition with early exit, 4-step orchestration process, dependency graph example, parallel vs sequential classification rules, `agent-N.status.md` and `shared-decisions.md` status file protocol.
|
|
199
|
+
- `@setup`: explicit `framework_installed` contract semantics (true/false downstream behavior), monorepo detection guidance for mixed Web3 + backend repos.
|
|
200
|
+
- `@ux-ui` and `@qa`: no structural changes (already complete).
|
|
201
|
+
- All 8 locale packs (`en`, `pt-BR`, `es`, `fr`) synchronized with enriched agent content.
|
|
202
|
+
- `isMonorepoDetection()` in `src/detector.js`: returns `true` when a Web3 framework and a backend or frontend framework coexist in the same directory.
|
|
203
|
+
- Monorepo detection note propagated to `setup:context` output (localized via `note_monorepo` key in all 4 i18n message files).
|
|
204
|
+
- `note_monorepo` i18n key added to `en`, `pt-BR`, `es`, and `fr` message dictionaries.
|
|
205
|
+
- 4 new tests for `isMonorepoDetection` in `tests/detector.test.js`.
|
|
206
|
+
|
|
207
|
+
### Changed
|
|
208
|
+
- `setup:context` now prepends a localized monorepo warning note when Web3 and application framework signals coexist in the project directory.
|
|
209
|
+
- `template/.aioson/config.md` context contract updated with explicit `framework_installed` semantics.
|
|
210
|
+
- `aioson_version` example in `@setup` output template corrected from `0.1.8` to `0.1.10`.
|
|
211
|
+
- `tests/agent-contracts.test.js` updated to reflect new `@dev` section names (`Laravel conventions`, `Responsibility boundary`).
|
|
212
|
+
|
|
213
|
+
### Added
|
|
214
|
+
- Full `pt-BR` CLI dictionary at `src/i18n/messages/pt-BR.js`.
|
|
215
|
+
- Localized agent prompt packs for:
|
|
216
|
+
- `es` at `template/.aioson/locales/es/agents/*.md`
|
|
217
|
+
- `fr` at `template/.aioson/locales/fr/agents/*.md`
|
|
218
|
+
- New `@ux-ui` agent contract and template set:
|
|
219
|
+
- `.aioson/agents/ux-ui.md`
|
|
220
|
+
- `.aioson/locales/{en,pt-BR,es,fr}/agents/ux-ui.md`
|
|
221
|
+
- `.gemini/commands/aios-ux-ui.toml`
|
|
222
|
+
- Legacy framework detection support:
|
|
223
|
+
- `CodeIgniter 3`
|
|
224
|
+
- `CodeIgniter 4`
|
|
225
|
+
- New package installation validation command:
|
|
226
|
+
- `aioson test:package [source-path] [--keep] [--dry-run] [--json]`
|
|
227
|
+
- New workflow planning command:
|
|
228
|
+
- `aioson workflow:plan [path] [--classification=MICRO|SMALL|MEDIUM] [--json]`
|
|
229
|
+
- `mcp:init` tool presets generation under `.aioson/mcp/presets/`:
|
|
230
|
+
- `claude.json`
|
|
231
|
+
- `codex.json`
|
|
232
|
+
- `gemini.json`
|
|
233
|
+
- `opencode.json`
|
|
234
|
+
- New MCP validation command:
|
|
235
|
+
- `aioson mcp:doctor [path] [--strict-env] [--json]`
|
|
236
|
+
- New parallel orchestration bootstrap command:
|
|
237
|
+
- `aioson parallel:init [path] [--workers=2..6] [--force] [--dry-run] [--json]`
|
|
238
|
+
- New parallel diagnosis/remediation command:
|
|
239
|
+
- `aioson parallel:doctor [path] [--workers=2..6] [--fix] [--force] [--dry-run] [--json]`
|
|
240
|
+
- New parallel scope assignment command:
|
|
241
|
+
- `aioson parallel:assign [path] [--source=auto|prd|architecture|discovery|<file>] [--workers=2..6] [--force] [--dry-run] [--json]`
|
|
242
|
+
- New parallel consolidated status command:
|
|
243
|
+
- `aioson parallel:status [path] [--json]`
|
|
244
|
+
- Optional `mcp:init` tool filter:
|
|
245
|
+
- `--tool=claude|codex|gemini|opencode`
|
|
246
|
+
- `test:smoke` mixed monorepo profile:
|
|
247
|
+
- `--profile=mixed` for combined Web2 + Web3 workspace validation
|
|
248
|
+
- `test:smoke` parallel orchestration profile:
|
|
249
|
+
- `--profile=parallel` to validate `parallel:init/assign/status/doctor` in one flow
|
|
250
|
+
- Formal JSON schema documentation for automation:
|
|
251
|
+
- `docs/en/json-schemas.md`
|
|
252
|
+
- `docs/en/schemas/index.json`
|
|
253
|
+
- `docs/en/schemas/*.schema.json` for each JSON command contract
|
|
254
|
+
- includes `docs/en/schemas/mcp-doctor.schema.json`
|
|
255
|
+
- includes `docs/en/schemas/parallel-init.schema.json`
|
|
256
|
+
- includes `docs/en/schemas/parallel-doctor.schema.json`
|
|
257
|
+
- includes `docs/en/schemas/parallel-assign.schema.json`
|
|
258
|
+
- includes `docs/en/schemas/parallel-status.schema.json`
|
|
259
|
+
|
|
260
|
+
### Changed
|
|
261
|
+
- Version resolution is now centralized via `src/version.js` and shared across `info`, `setup:context`, and installer metadata generation.
|
|
262
|
+
- Removed remaining hardcoded `0.1.8` fallback in `setup:context` version assignment.
|
|
263
|
+
- Locale resolution now supports canonical fallback for Portuguese:
|
|
264
|
+
- `pt-BR` -> `pt-br`
|
|
265
|
+
- `pt_br` -> `pt-br`
|
|
266
|
+
- `pt` -> `pt-br`
|
|
267
|
+
- Locale resolution now also supports regional fallback for:
|
|
268
|
+
- `es-*` -> `es`
|
|
269
|
+
- `fr-*` -> `fr`
|
|
270
|
+
- Agent locale resolution now supports:
|
|
271
|
+
- `es-*` -> `es`
|
|
272
|
+
- `fr-*` -> `fr`
|
|
273
|
+
- `update` now reapplies active agent prompts from `conversation_language` in context, preventing locale reset after template refresh.
|
|
274
|
+
- `mcp:init` now writes both shared plan and tool-specific preset templates.
|
|
275
|
+
- `mcp:init` Context7/Database presets now default to remote-endpoint bridge templates (`mcp-remote`) with URL env vars instead of generic command placeholders.
|
|
276
|
+
- `mcp:init` invalid `--tool` errors are now localized via i18n dictionaries.
|
|
277
|
+
- `mcp:doctor` human-readable check messages and summary are now fully localized.
|
|
278
|
+
- `workflow:plan` advisory notes are now localized from i18n keys instead of hardcoded English.
|
|
279
|
+
- `setup:context` onboarding notes are now localized (including beginner recommendation notes and stack-option notes).
|
|
280
|
+
- `test:package` failure messages are now localized via i18n dictionaries.
|
|
281
|
+
- `parallel:doctor` check/hint messages are now fully localized (including severity labels).
|
|
282
|
+
- Internal validation failures inside `test:smoke` are now localized instead of hardcoded English.
|
|
283
|
+
- `parallel:status` human-readable status rows and lane summaries are now localized (including status labels).
|
|
284
|
+
- `mcp:doctor` severity prefixes are now localized per locale (`OK/WARN/FAIL` equivalents).
|
|
285
|
+
- `test:package` now localizes fallback command failure detail when stderr/stdout are empty.
|
|
286
|
+
- `parallel:assign` lane scope summary lines are now localized in human-readable output.
|
|
287
|
+
- Parallel commands now localize fallback `unknown` classification labels in human-readable errors.
|
|
288
|
+
- `mcp:init` now avoids hardcoded fallback text for invalid `--tool` and uses i18n-backed messaging.
|
|
289
|
+
- `mcp:init` now localizes generated server `reason` fields and preset `notes` content via i18n.
|
|
290
|
+
- Removed remaining hardcoded `unknown` fallbacks in `parallel:doctor` check messages and `context:validate` parse-reason output.
|
|
291
|
+
- `context:validate` now localizes known frontmatter parse reason codes into human-readable locale messages.
|
|
292
|
+
- `mcp:doctor` now localizes context frontmatter parse reason codes using the same i18n mapping as `context:validate`.
|
|
293
|
+
- Standardized localized line formatting for `agents`, `locale:apply`, `workflow:plan`, and `parallel:init` human-readable listings.
|
|
294
|
+
- Localized diagnostic line wrappers for `mcp:doctor` and `parallel:doctor` checks/hints, plus `context:validate` issue list rows.
|
|
295
|
+
- Localized diagnostic/action wrapper lines in `doctor` command output (checks, hints, fix actions, and detail lines).
|
|
296
|
+
- `cli` help and unknown-command wrapper lines are now localized via i18n keys instead of inline formatting.
|
|
297
|
+
- `init` and `install` now print explicit multi-IDE onboarding hints (`agents` + `agent:prompt setup`) with optional `--tool=codex|claude|gemini|opencode` guidance.
|
|
298
|
+
- Agent flow now supports explicit UI/UX handoff:
|
|
299
|
+
- `@architect` may hand off key screens/component constraints to `@ux-ui`
|
|
300
|
+
- `@dev` now consumes `.aioson/context/ui-spec.md` when present
|
|
301
|
+
- `SMALL`/`MEDIUM` default sequence includes `@ux-ui`
|
|
302
|
+
- `doctor` now enforces multi-IDE gateway contracts (Claude/Codex/Gemini/OpenCode) and validates required Gemini/OpenCode files.
|
|
303
|
+
- `doctor` now also validates each Gemini command file (`.gemini/commands/aios-*.toml`) maps to the expected shared agent instruction file.
|
|
304
|
+
- `doctor --fix` now restores broken gateway contract files (Claude/Codex/Gemini/OpenCode + Gemini command mappings) from template in safe mode.
|
|
305
|
+
- `update` now supports `--lang=en|pt-BR|es|fr` (and `--language`) to force localized agent-pack sync during update, including dry-run planning.
|
|
306
|
+
- `--json` output mode now supports `init`, `install`, and `update` with clean machine-readable payloads (no mixed human logs).
|
|
307
|
+
- `--json` output mode now also supports `agents`, `agent:prompt`, `locale:apply`, `setup:context`, and `i18n:add`.
|
|
308
|
+
- JSON payloads for `init/install/update/agents/agent:prompt/locale:apply/setup:context/i18n:add` now include stable `ok` and command context fields.
|
|
309
|
+
- JSON schema catalog expanded with formal contracts for:
|
|
310
|
+
- `init`
|
|
311
|
+
- `install`
|
|
312
|
+
- `update`
|
|
313
|
+
- `agents`
|
|
314
|
+
- `agent:prompt`
|
|
315
|
+
- `locale:apply`
|
|
316
|
+
- `setup:context`
|
|
317
|
+
- `i18n:add`
|
|
318
|
+
- `init` and `install` now support `--lang=en|pt-BR|es|fr` to auto-apply localized agent packs during bootstrap.
|
|
319
|
+
- Setup templates now default `aioson_version` to `0.1.8`.
|
|
320
|
+
- `ui-ux-modern` static skill was expanded to a production-ready checklist with token, state, accessibility, responsive, and handoff guidance.
|
|
321
|
+
- Developer onboarding now handles `Other` backend/frontend choices as true free-text custom values (legacy/custom stacks).
|
|
322
|
+
- Expanded automated coverage:
|
|
323
|
+
- `tests/i18n-cli.test.js`
|
|
324
|
+
- `tests/init-install-guidance.test.js`
|
|
325
|
+
- `tests/prompt-tool.test.js`
|
|
326
|
+
- `tests/init-install-guidance.test.js` now validates locale pack auto-apply on `init/install --lang`
|
|
327
|
+
- `tests/version.test.js`
|
|
328
|
+
- `tests/update.test.js` now covers `--lang` override and dry-run locale sync planning
|
|
329
|
+
- `tests/json-output.test.js` now covers `init/install/update --json`
|
|
330
|
+
- `tests/json-output.test.js` now covers `agents/agent:prompt/locale:apply/setup:context/i18n:add --json`
|
|
331
|
+
- `tests/json-schema-files.test.js` now validates expanded schema catalog
|
|
332
|
+
- `tests/locales.test.js`
|
|
333
|
+
- `tests/agent-contracts.test.js`
|
|
334
|
+
- `tests/smoke.test.js` now verifies active agent prompt locale application for `--lang=es` and `--lang=fr`
|
|
335
|
+
- `tests/mcp-doctor.test.js`
|
|
336
|
+
- `tests/mcp-init.test.js` now covers invalid `--tool` handling
|
|
337
|
+
- `tests/setup-context.test.js` now validates localized onboarding notes
|
|
338
|
+
- `tests/parallel-doctor.test.js` now validates localized check messages
|
|
339
|
+
- `tests/parallel-init.test.js`
|
|
340
|
+
- `tests/parallel-doctor.test.js`
|
|
341
|
+
- `tests/parallel-assign.test.js`
|
|
342
|
+
- `tests/parallel-status.test.js`
|
|
343
|
+
- `tests/json-output.test.js` now covers `mcp:doctor --json`
|
|
344
|
+
- `tests/package-test.test.js`
|
|
345
|
+
- `tests/workflow-plan.test.js`
|
|
346
|
+
- extended `tests/mcp-init.test.js` and `tests/json-output.test.js`
|
|
347
|
+
- smoke JSON e2e checks for `--locale=es` and `--locale=fr`
|
|
348
|
+
- smoke coverage for `--profile=parallel`
|
|
349
|
+
|
|
350
|
+
## [0.1.7] - 2026-03-01
|
|
351
|
+
### Added
|
|
352
|
+
- JSON output mode (`--json`) for:
|
|
353
|
+
- `aioson info`
|
|
354
|
+
- `aioson doctor`
|
|
355
|
+
- `aioson context:validate`
|
|
356
|
+
- `aioson test:smoke`
|
|
357
|
+
- New JSON output test suite: `tests/json-output.test.js`.
|
|
358
|
+
|
|
359
|
+
### Changed
|
|
360
|
+
- CLI now returns structured JSON errors for unknown commands and runtime failures when `--json` is enabled.
|
|
361
|
+
- `setup:context` and setup templates now default `aioson_version` to `0.1.7`.
|
|
362
|
+
|
|
363
|
+
## [0.1.6] - 2026-03-01
|
|
364
|
+
### Added
|
|
365
|
+
- `test:smoke` now supports chain-specific Web3 profiles:
|
|
366
|
+
- `--web3=ethereum`
|
|
367
|
+
- `--web3=solana`
|
|
368
|
+
- `--web3=cardano`
|
|
369
|
+
- Web3 smoke workflow now verifies:
|
|
370
|
+
- framework detection per chain profile
|
|
371
|
+
- `project.context.md` dApp/Web3 frontmatter consistency.
|
|
372
|
+
|
|
373
|
+
### Changed
|
|
374
|
+
- CLI help and docs updated for `test:smoke --web3`.
|
|
375
|
+
- `setup:context` and setup templates now default `aioson_version` to `0.1.6`.
|
|
376
|
+
|
|
377
|
+
## [0.1.5] - 2026-03-01
|
|
378
|
+
### Added
|
|
379
|
+
- Web3 framework detection:
|
|
380
|
+
- Ethereum: `Hardhat`, `Foundry`, `Truffle`
|
|
381
|
+
- Solana: `Anchor`, `Solana Web3`
|
|
382
|
+
- Cardano: `Cardano` (Aiken/Cardano SDK signals)
|
|
383
|
+
- New Web3 skill templates:
|
|
384
|
+
- static: `web3-ethereum-patterns`, `web3-solana-patterns`, `web3-cardano-patterns`, `web3-security-checklist`, `node-typescript-patterns`
|
|
385
|
+
- dynamic: `ethereum-docs`, `solana-docs`, `cardano-docs`
|
|
386
|
+
- New documentation page: `docs/en/web3.md`.
|
|
387
|
+
|
|
388
|
+
### Changed
|
|
389
|
+
- `project_type` now accepts `dapp`.
|
|
390
|
+
- `setup:context` now supports Web3 context fields (`web3_enabled`, `web3_networks`, `contract_framework`, `wallet_provider`, `indexer`, `rpc_provider`).
|
|
391
|
+
- `setup:context` and setup templates now default `aioson_version` to `0.1.5`.
|
|
392
|
+
|
|
393
|
+
## [0.1.4] - 2026-03-01
|
|
394
|
+
### Added
|
|
395
|
+
- New command:
|
|
396
|
+
- `aioson test:smoke [workspace-path] [--lang=en|pt-BR] [--keep]`
|
|
397
|
+
- New smoke test suite: `tests/smoke.test.js`.
|
|
398
|
+
|
|
399
|
+
### Changed
|
|
400
|
+
- `doctor` now supports safe remediation mode:
|
|
401
|
+
- `aioson doctor --fix`
|
|
402
|
+
- `aioson doctor --fix --dry-run`
|
|
403
|
+
- `setup:context` and setup templates now default `aioson_version` to `0.1.4`.
|
|
404
|
+
|
|
405
|
+
## [0.1.3] - 2026-03-01
|
|
406
|
+
### Added
|
|
407
|
+
- Localized agent prompt packs:
|
|
408
|
+
- `.aioson/locales/en/agents/*.md`
|
|
409
|
+
- `.aioson/locales/pt-BR/agents/*.md`
|
|
410
|
+
- New command:
|
|
411
|
+
- `aioson locale:apply [path] [--lang=en|pt-BR] [--dry-run]`
|
|
412
|
+
- Agent path resolution now supports locale-aware prompts with fallback to active agent paths.
|
|
413
|
+
- New locale test suite: `tests/locales.test.js`.
|
|
414
|
+
|
|
415
|
+
### Changed
|
|
416
|
+
- `setup:context` now applies localized agent prompts based on `conversation_language`.
|
|
417
|
+
- Documentation updated for locale pack workflow.
|
|
418
|
+
|
|
419
|
+
## [0.1.2] - 2026-03-01
|
|
420
|
+
### Added
|
|
421
|
+
- New commands:
|
|
422
|
+
- `aioson agents`
|
|
423
|
+
- `aioson agent:prompt <agent> [--tool=...]`
|
|
424
|
+
- `aioson context:validate [path]`
|
|
425
|
+
- `aioson setup:context [path]` (interactive or defaults mode)
|
|
426
|
+
- New modules:
|
|
427
|
+
- `src/context.js` for frontmatter parsing and context contract validation
|
|
428
|
+
- `src/agents.js` for agent metadata and prompt generation
|
|
429
|
+
- `src/context-writer.js` for context rendering and classification scoring
|
|
430
|
+
- New test suites:
|
|
431
|
+
- `tests/context.test.js`
|
|
432
|
+
- `tests/agents.test.js`
|
|
433
|
+
- `tests/context-writer.test.js`
|
|
434
|
+
|
|
435
|
+
### Changed
|
|
436
|
+
- `doctor` now validates `project.context.md` frontmatter and required fields, including `conversation_language` format.
|
|
437
|
+
|
|
438
|
+
## [0.1.1] - 2026-03-01
|
|
439
|
+
### Changed
|
|
440
|
+
- Converted remaining template files to English (`.aioson` agents/config and Gemini command descriptions).
|
|
441
|
+
- Hardened `@setup` instructions to prevent silent defaults for `project_type`, `profile`, `classification`, and language.
|
|
442
|
+
- Added explicit `conversation_language` to context contract so agent interaction language can be enforced.
|
|
443
|
+
|
|
444
|
+
## [0.1.0] - 2026-03-01
|
|
445
|
+
### Added
|
|
446
|
+
- Initial CLI commands: init, install, update, info, doctor
|
|
447
|
+
- Multi-IDE template gateways (Claude, Codex, Gemini, OpenCode)
|
|
448
|
+
- Framework detector and installer/updater core
|
|
449
|
+
- i18n message system with English default
|
|
450
|
+
- Automated tests for detector, installer, doctor, i18n
|
|
451
|
+
- `i18n:add <locale>` command to scaffold new locale dictionaries
|
|
452
|
+
- GitHub Actions CI and tag-based npm release workflows
|
|
453
|
+
|
|
454
|
+
### Changed
|
|
455
|
+
- Project-facing content standardized to English
|
|
456
|
+
- CLI i18n upgraded with dynamic locale loading and fallback behavior
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# Code of Conduct
|
|
2
|
+
|
|
3
|
+
Be respectful, inclusive, and constructive.
|
|
4
|
+
|
|
5
|
+
## Expected behavior
|
|
6
|
+
- Use welcoming and professional language.
|
|
7
|
+
- Focus on technical feedback and collaborative problem solving.
|
|
8
|
+
- Assume good intent.
|
|
9
|
+
|
|
10
|
+
## Unacceptable behavior
|
|
11
|
+
- Harassment, insults, discrimination, or intimidation.
|
|
12
|
+
- Personal attacks or hostile communication.
|
package/CONTRIBUTING.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# Contributing
|
|
2
|
+
|
|
3
|
+
## Development
|
|
4
|
+
1. Fork the repository.
|
|
5
|
+
2. Create a branch from main.
|
|
6
|
+
3. Run tests: `npm test`.
|
|
7
|
+
4. Run lint checks: `npm run lint`.
|
|
8
|
+
5. Open a pull request with a clear description.
|
|
9
|
+
|
|
10
|
+
## Commit style
|
|
11
|
+
Use Conventional Commits, for example:
|
|
12
|
+
- `feat(cli): add doctor command output hints`
|
|
13
|
+
- `fix(detector): avoid false positives for Node projects`
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|