@appsforgood/next-supabase-kit 0.4.0 → 0.4.2

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.
Files changed (82) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/README.md +2 -2
  3. package/UPGRADE.md +22 -0
  4. package/USER_GUIDE.html +808 -0
  5. package/USER_GUIDE.md +12 -10
  6. package/agents/app-engineer/agent.md +4 -0
  7. package/agents/copy/agent.md +16 -3
  8. package/agents/design/agent.md +7 -1
  9. package/agents/optional/deploy/agent.md +6 -0
  10. package/agents/optional/docs/agent.md +4 -0
  11. package/agents/optional/lead-architect/agent.md +8 -0
  12. package/agents/optional/research/agent.md +4 -0
  13. package/agents/planner/agent.md +8 -0
  14. package/agents/qa/agent.md +2 -0
  15. package/agents/security/agent.md +2 -0
  16. package/catalog.json +1 -0
  17. package/dist/index.js +74 -11
  18. package/dist/index.js.map +1 -1
  19. package/examples/next-supabase-installed/.agent-kit/config.json +1 -0
  20. package/examples/next-supabase-installed/.agent-kit/manifest.json +54 -49
  21. package/examples/next-supabase-installed/.antigravity/agent-kit/commands/copy.toml +1 -1
  22. package/examples/next-supabase-installed/.antigravity/runtime-skills/deslop/SKILL.md +62 -0
  23. package/examples/next-supabase-installed/.antigravity/runtime-skills/frontend-design/SKILL.md +90 -9
  24. package/examples/next-supabase-installed/.antigravity/runtime-skills/nextjs-app-router/SKILL.md +29 -9
  25. package/examples/next-supabase-installed/.antigravity/runtime-skills/owasp-security-review/SKILL.md +31 -9
  26. package/examples/next-supabase-installed/.antigravity/runtime-skills/planning/SKILL.md +11 -5
  27. package/examples/next-supabase-installed/.antigravity/runtime-skills/postgres-migrations/SKILL.md +25 -7
  28. package/examples/next-supabase-installed/.antigravity/runtime-skills/product-copy/SKILL.md +36 -4
  29. package/examples/next-supabase-installed/.antigravity/runtime-skills/supabase-auth-rls/SKILL.md +41 -9
  30. package/examples/next-supabase-installed/.antigravity/runtime-skills/testing-qa/SKILL.md +3 -3
  31. package/examples/next-supabase-installed/.claude/agents/app-engineer.md +4 -0
  32. package/examples/next-supabase-installed/.claude/agents/copy.md +16 -3
  33. package/examples/next-supabase-installed/.claude/agents/design.md +7 -1
  34. package/examples/next-supabase-installed/.claude/agents/planner.md +8 -0
  35. package/examples/next-supabase-installed/.claude/agents/qa.md +2 -0
  36. package/examples/next-supabase-installed/.claude/agents/security.md +2 -0
  37. package/examples/next-supabase-installed/.codex/agents/app-engineer.toml +4 -0
  38. package/examples/next-supabase-installed/.codex/agents/copy.toml +17 -4
  39. package/examples/next-supabase-installed/.codex/agents/design.toml +7 -1
  40. package/examples/next-supabase-installed/.codex/agents/planner.toml +8 -0
  41. package/examples/next-supabase-installed/.codex/agents/qa.toml +2 -0
  42. package/examples/next-supabase-installed/.codex/agents/security.toml +2 -0
  43. package/examples/next-supabase-installed/.cursor/agents/app-engineer.md +4 -0
  44. package/examples/next-supabase-installed/.cursor/agents/copy.md +16 -3
  45. package/examples/next-supabase-installed/.cursor/agents/design.md +7 -1
  46. package/examples/next-supabase-installed/.cursor/agents/planner.md +8 -0
  47. package/examples/next-supabase-installed/.cursor/agents/qa.md +2 -0
  48. package/examples/next-supabase-installed/.cursor/agents/security.md +2 -0
  49. package/examples/next-supabase-installed/.cursor/skills/deslop/SKILL.md +62 -0
  50. package/examples/next-supabase-installed/.cursor/skills/frontend-design/SKILL.md +90 -9
  51. package/examples/next-supabase-installed/.cursor/skills/nextjs-app-router/SKILL.md +29 -9
  52. package/examples/next-supabase-installed/.cursor/skills/owasp-security-review/SKILL.md +31 -9
  53. package/examples/next-supabase-installed/.cursor/skills/planning/SKILL.md +11 -5
  54. package/examples/next-supabase-installed/.cursor/skills/postgres-migrations/SKILL.md +25 -7
  55. package/examples/next-supabase-installed/.cursor/skills/product-copy/SKILL.md +36 -4
  56. package/examples/next-supabase-installed/.cursor/skills/supabase-auth-rls/SKILL.md +41 -9
  57. package/examples/next-supabase-installed/.cursor/skills/testing-qa/SKILL.md +3 -3
  58. package/examples/next-supabase-installed/AGENTS.md +1 -1
  59. package/examples/next-supabase-installed/USER_GUIDE.html +808 -0
  60. package/examples/next-supabase-installed/USER_GUIDE.md +12 -10
  61. package/examples/next-supabase-installed/skills/deslop/SKILL.md +62 -0
  62. package/examples/next-supabase-installed/skills/frontend-design/SKILL.md +90 -9
  63. package/examples/next-supabase-installed/skills/nextjs-app-router/SKILL.md +29 -9
  64. package/examples/next-supabase-installed/skills/owasp-security-review/SKILL.md +31 -9
  65. package/examples/next-supabase-installed/skills/planning/SKILL.md +11 -5
  66. package/examples/next-supabase-installed/skills/postgres-migrations/SKILL.md +25 -7
  67. package/examples/next-supabase-installed/skills/product-copy/SKILL.md +36 -4
  68. package/examples/next-supabase-installed/skills/supabase-auth-rls/SKILL.md +41 -9
  69. package/examples/next-supabase-installed/skills/testing-qa/SKILL.md +3 -3
  70. package/examples/next-supabase-installed/tree.txt +3 -0
  71. package/package.json +6 -4
  72. package/research/agent-skill-gap-report.md +11 -2
  73. package/skills/deslop/SKILL.md +62 -0
  74. package/skills/frontend-design/SKILL.md +90 -9
  75. package/skills/nextjs-app-router/SKILL.md +29 -9
  76. package/skills/owasp-security-review/SKILL.md +31 -9
  77. package/skills/planning/SKILL.md +11 -5
  78. package/skills/postgres-migrations/SKILL.md +25 -7
  79. package/skills/product-copy/SKILL.md +36 -4
  80. package/skills/supabase-auth-rls/SKILL.md +41 -9
  81. package/skills/testing-qa/SKILL.md +3 -3
  82. package/templates/next-supabase/AGENTS.md +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.4.2
4
+
5
+ - Uplift default domain skills so they are playbooks, not checklists: `nextjs-app-router` (App Router, async request APIs, `proxy.ts`), `supabase-auth-rls` (SSR clients, `getUser()`, service role, RLS), `postgres-migrations` (RLS in the same change), `owasp-security-review` (Top 10 mapped onto Actions/RLS/SSRF).
6
+ - Planner’s `planning` skill names which of those skills the owner must run. App engineer must not skip them for a “small” route.
7
+
8
+ ## 0.4.1
9
+
10
+ - Catch-up release: npm `0.4.0` was the simplify cut; later GitHub work (`deslop`, frontend-design, catalog pointers, leftover `doctor`, HTML user guide) was not on npm.
11
+ - Upgrade `vitest` and `@vitest/coverage-v8` to 4.1.11 so `npm audit --audit-level=moderate` clears GHSA-82fw-gwwq-j7x9. Pin `vite` at 6.4.3 so the bump does not pull Vite 8. This is a devDependency-only gate; the published kit tarball still does not include vitest.
12
+ - Add default `deslop`. Copy always runs it last after `product-copy`.
13
+ - Uplift `frontend-design`: 4-token palettes, kit vs product tokens, and 2026 default-cluster rejects.
14
+ - Planner uses the `planning` skill and names owners; every agent points at `catalog.json` and the USER_GUIDE skill table.
15
+ - `doctor` warns when 0.3 council leftovers (`QUALITY_GATES.md`, `COUNCIL.md`, roster JSON, …) are still present. That is not a failure. `update` still never deletes them.
16
+ - Ship `USER_GUIDE.html` as the charcoal assignment-desk field guide, with desktop and mobile screenshot evidence.
17
+
3
18
  ## 0.4.0
4
19
 
5
20
  - Simplify the pack to agents, skills, and a user guide. `init` writes `AGENTS.md`, `USER_GUIDE.md`, and native IDE files only.
package/README.md CHANGED
@@ -10,7 +10,7 @@ QA does not review user-visible work from code alone. A change is not done until
10
10
  npx --yes @appsforgood/next-supabase-kit init --activate all
11
11
  ```
12
12
 
13
- Then read **[USER_GUIDE.md](USER_GUIDE.md)**. That guide is how you use the pack.
13
+ Then open **[USER_GUIDE.html](USER_GUIDE.html)** (markdown twin: [USER_GUIDE.md](USER_GUIDE.md)). That guide is how you use the pack.
14
14
 
15
15
  ## What you get
16
16
 
@@ -38,4 +38,4 @@ Planner · App engineer · Security · Design · QA · Copy
38
38
 
39
39
  ## Default skills
40
40
 
41
- planning · nextjs-app-router · supabase-auth-rls · postgres-migrations · owasp-security-review · frontend-design · accessibility-wcag · **browser-qa** · testing-qa · product-copy · ship
41
+ planning · nextjs-app-router · supabase-auth-rls · postgres-migrations · owasp-security-review · frontend-design · accessibility-wcag · **browser-qa** · testing-qa · product-copy · **deslop** · ship
package/UPGRADE.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # Upgrade Guide
2
2
 
3
+ ## 0.4.2
4
+
5
+ `0.4.1` is the published simplify catch-up. `0.4.2` rewrites the Next.js and Supabase domain skills. `update` refreshes pristine skill files; local edits win or land in conflicts.
6
+
7
+ ```bash
8
+ npx @appsforgood/next-supabase-kit@0.4.2 update
9
+ npx @appsforgood/next-supabase-kit@0.4.2 doctor
10
+ ```
11
+
12
+ Do not re-init. `update` still never deletes leftover 0.3 council docs.
13
+
14
+ ## 0.4.1
15
+
16
+ npm `0.4.0` was the simplify cut. `0.4.1` adds `deslop`, the 4-token `frontend-design` skill, catalog pointers on agents, and leftover-0.3 `doctor` warnings. Those leftover warnings are not a failure. `update` still never deletes old council docs.
17
+
18
+ ```bash
19
+ npx @appsforgood/next-supabase-kit@0.4.1 update
20
+ npx @appsforgood/next-supabase-kit@0.4.1 doctor
21
+ ```
22
+
23
+ Do not re-init.
24
+
3
25
  ## 0.4.0
4
26
 
5
27
  This is a breaking simplify. `init` now writes `AGENTS.md`, `USER_GUIDE.md`, and native IDE agents/skills. It does not install the 17-doc operating system, Studio, or orchestrator files.