@appsforgood/next-supabase-kit 0.1.0 → 0.1.1

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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.1
4
+
5
+ - Completed npm package rename from `@agent-skills/next-supabase-kit` to `@appsforgood/next-supabase-kit` across CLI defaults, shipped docs, templates, examples, tests, and release scripts.
6
+ - Fixed Windows post-publish verification to use `npm exec -- agent-kit` so public install checks work with an isolated npm cache.
7
+ - Regenerated committed install examples and audit output for the `@appsforgood` package identity.
8
+
3
9
  ## 0.1.0
4
10
 
5
11
  - Initial public package scaffold.
@@ -15,7 +21,7 @@
15
21
  - Fixed package bin metadata so `agent-kit` is preserved during npm publish.
16
22
  - Replaced publish-token CI authentication with npm Trusted Publishing and optional read-token install verification.
17
23
  - Added a Planner agent, Planning and Agent Council skill, and machine-readable default council roster enforced by audit.
18
- - Rebranded package for public OSS as `@agent-skills/next-supabase-kit` with MIT license, citation policy, and public-readiness tests.
24
+ - Rebranded package for public OSS as `@appsforgood/next-supabase-kit` with MIT license, citation policy, and public-readiness tests.
19
25
  - Added content-first design, visual QA, schema-backed council traceability, and public OSS repo-health hardening.
20
26
  - Added issue forms, PR template, CODEOWNERS, Dependabot, CodeQL, support, conduct, governance docs, and repo-health research signals.
21
27
  - Added label source of truth, PR labeler workflow, and repository-settings checklist for branch protection, release environment, private vulnerability reporting, and required labels.
package/DOGFOOD.md CHANGED
@@ -72,7 +72,7 @@ Result: passed locally on Windows after assistant adapter install on init, basel
72
72
  | Install smoke | IDE adapter rules installed, `baseline-setup`, 0 failures |
73
73
  | Agent Studio smoke | `baseline-setup`, 0 failures |
74
74
  | Baseline audit gate smoke | `baseline-setup`, 0 failures |
75
- | npm pack dry run | `@agent-skills/next-supabase-kit@0.1.0` tarball validated |
75
+ | npm pack dry run | `@appsforgood/next-supabase-kit@0.1.1` tarball validated |
76
76
 
77
77
  Remaining publish action: execute [PUBLISH.md](PUBLISH.md), then run `npm run publish:verify`.
78
78
 
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Agent Skills Next/Supabase Kit
2
2
 
3
- `@agent-skills/next-supabase-kit` installs an agent operating system for Next.js + Supabase projects.
3
+ `@appsforgood/next-supabase-kit` installs an agent operating system for Next.js + Supabase projects.
4
4
 
5
5
  It gives agentic coders a default council roster, reusable skills, handoff rules, model-routing guidance, markdown docs, frontend design gates, Supabase/RLS security checks, upgrade workflows, and audit commands.
6
6
 
@@ -17,9 +17,9 @@ It also includes a local Agent Studio workflow: project context, durable human c
17
17
  Use this in a Next.js + Supabase project after the public package is available on npm:
18
18
 
19
19
  ```bash
20
- npx @agent-skills/next-supabase-kit init --stack next-supabase
21
- npx @agent-skills/next-supabase-kit audit
22
- npx @agent-skills/next-supabase-kit audit --min-readiness baseline-setup
20
+ npx @appsforgood/next-supabase-kit init --stack next-supabase
21
+ npx @appsforgood/next-supabase-kit audit
22
+ npx @appsforgood/next-supabase-kit audit --min-readiness baseline-setup
23
23
  ```
24
24
 
25
25
  The installer preserves existing docs. If a file already exists and differs from the template, the new version is written to `.agent-kit/conflicts/` for review.
@@ -226,7 +226,7 @@ Detailed per-repo findings are committed for repository development, but the pub
226
226
  Public package name:
227
227
 
228
228
  ```text
229
- @agent-skills/next-supabase-kit
229
+ @appsforgood/next-supabase-kit
230
230
  ```
231
231
 
232
232
  Release expectations:
@@ -36,7 +36,7 @@ Create environment `npm-publish` with:
36
36
 
37
37
  The npm trusted publisher must match:
38
38
 
39
- - Package: `@agent-skills/next-supabase-kit`
39
+ - Package: `@appsforgood/next-supabase-kit`
40
40
  - Provider: GitHub Actions
41
41
  - Repository: `lukey662/agentsandskills`
42
42
  - Workflow: `release.yml`
package/SUPPLY_CHAIN.md CHANGED
@@ -4,7 +4,7 @@ This package is intended for public npm distribution and downstream project boot
4
4
 
5
5
  ## Publish Identity
6
6
 
7
- - Public package: `@agent-skills/next-supabase-kit`.
7
+ - Public package: `@appsforgood/next-supabase-kit`.
8
8
  - Publish path: GitHub Actions release workflow through npm Trusted Publishing.
9
9
  - Authentication: OIDC trusted publisher, not a long-lived npm automation token.
10
10
  - Environment: `npm-publish`.
@@ -28,10 +28,10 @@ Before publish:
28
28
 
29
29
  After publish:
30
30
 
31
- - `npm view @agent-skills/next-supabase-kit@<version> version`
32
- - `npx --yes @agent-skills/next-supabase-kit@<version> doctor`
33
- - `npx --yes @agent-skills/next-supabase-kit@<version> init --stack next-supabase` in a clean temp project
34
- - `npx --yes @agent-skills/next-supabase-kit@<version> audit --json` with zero failures
31
+ - `npm view @appsforgood/next-supabase-kit@<version> version`
32
+ - `npx --yes @appsforgood/next-supabase-kit@<version> doctor`
33
+ - `npx --yes @appsforgood/next-supabase-kit@<version> init --stack next-supabase` in a clean temp project
34
+ - `npx --yes @appsforgood/next-supabase-kit@<version> audit --json` with zero failures
35
35
 
36
36
  The release workflow and `npm run publish:verify` both use `scripts/post-publish-verify.mjs` for this post-publish verification path.
37
37
 
package/UPGRADE.md CHANGED
@@ -18,17 +18,17 @@ Before publishing a new package version:
18
18
  3. Run `npm run release:check`.
19
19
  4. Confirm the pack dry run includes only public-safe files.
20
20
  5. Publish through npm Trusted Publishing.
21
- 6. Verify public install with `npx @agent-skills/next-supabase-kit`.
21
+ 6. Verify public install with `npx @appsforgood/next-supabase-kit`.
22
22
 
23
23
  ## Downstream Upgrade Checklist
24
24
 
25
25
  From a downstream project:
26
26
 
27
27
  ```bash
28
- npx @agent-skills/next-supabase-kit@latest doctor
29
- npx @agent-skills/next-supabase-kit@latest diff
30
- npx @agent-skills/next-supabase-kit@latest update
31
- npx @agent-skills/next-supabase-kit@latest audit --min-readiness baseline-setup
28
+ npx @appsforgood/next-supabase-kit@latest doctor
29
+ npx @appsforgood/next-supabase-kit@latest diff
30
+ npx @appsforgood/next-supabase-kit@latest update
31
+ npx @appsforgood/next-supabase-kit@latest audit --min-readiness baseline-setup
32
32
  ```
33
33
 
34
34
  The package includes an older-install regression fixture that exercises this path. The fixture proves update preserves customized docs, writes conflict templates, installs new current baseline docs and `.agent-kit/` assets, then audits with zero failures.
@@ -38,7 +38,7 @@ The package includes an older-install regression fixture that exercises this pat
38
38
  For mature projects, raise the gate after local evidence is updated:
39
39
 
40
40
  ```bash
41
- npx @agent-skills/next-supabase-kit@latest audit --min-readiness best-practice-candidate
41
+ npx @appsforgood/next-supabase-kit@latest audit --min-readiness best-practice-candidate
42
42
  ```
43
43
 
44
44
  ## Review Order
package/dist/index.js CHANGED
@@ -419,8 +419,8 @@ function formatContractIssues(error) {
419
419
  }
420
420
 
421
421
  // src/config/defaults.ts
422
- var PACKAGE_NAME = "@agent-skills/next-supabase-kit";
423
- var PACKAGE_VERSION = "0.1.0";
422
+ var PACKAGE_NAME = "@appsforgood/next-supabase-kit";
423
+ var PACKAGE_VERSION = "0.1.1";
424
424
  var DEFAULT_CONFIG = {
425
425
  stack: "next-supabase",
426
426
  projectType: "saas",
@@ -3296,7 +3296,7 @@ var requiredOutputStatuses = ["missing", "partial", "complete", "not-applicable"
3296
3296
  function isRequiredOutputStatus(value) {
3297
3297
  return requiredOutputStatuses.includes(value);
3298
3298
  }
3299
- program.name("agent-kit").description("Next.js + Supabase agent, skill, docs, design, and research kit.").version("0.1.0");
3299
+ program.name("agent-kit").description("Next.js + Supabase agent, skill, docs, design, and research kit.").version(PACKAGE_VERSION);
3300
3300
  program.command("init").description("Install agent-kit docs and library files into a project.").option("--stack <stack>", "Stack profile to install.", "next-supabase").option("--force", "Overwrite existing docs instead of writing conflicts.").option("--guided", "Also create local project context files from a non-interactive scan.").action((options) => {
3301
3301
  const result = initProject({
3302
3302
  cwd: process.cwd(),