@appsforgood/next-supabase-kit 0.1.3 → 0.1.4
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 +9 -0
- package/assistant-adapters/codex-agents.md +15 -0
- package/assistant-adapters/cursor-agent-kit.mdc +1 -0
- package/assistant-adapters/cursor-frontend.mdc +16 -0
- package/assistant-adapters/cursor-planner.mdc +14 -0
- package/assistant-adapters/cursor-security.mdc +18 -0
- package/assistant-adapters/model-selection/codex-config.example.toml +3 -0
- package/dist/index.js +627 -280
- package/dist/index.js.map +1 -1
- package/examples/next-supabase-installed/.agent-kit/manifest.json +3 -3
- package/examples/next-supabase-installed/.agent-kit/overrides.json +1 -7
- package/examples/next-supabase-installed/audit-output.json +9 -2
- package/package.json +1 -1
- package/templates/next-supabase/ASSISTANT_ADAPTERS.md +26 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.4
|
|
4
|
+
|
|
5
|
+
- Added true multi-agent IDE activation for **Cursor** (`.cursor/agents/*.md`, `.cursor/skills/*/SKILL.md`, scoped rules) and **Codex** (`.codex/agents/*.toml` with model routing effort) via `agent-kit init --activate cursor|codex`.
|
|
6
|
+
- Added shared roster adapter generation (`roster-adapters.ts`) and assistant adapter table parsing so audit and `adapter validate` warn when Active Cursor/Codex rows lack specialist files.
|
|
7
|
+
- Fixed setup wizard IDE activation order so `present` is detected after files are generated and conflicts are returned in the API response.
|
|
8
|
+
- Quoted YAML frontmatter in generated Cursor/Claude subagents and Cursor skills so descriptions with colons or quotes remain valid.
|
|
9
|
+
- Stopped post-copy mutation of existing `.codex/config.toml`; conflict-safe copy behavior now protects customized Codex config.
|
|
10
|
+
- Fixed `cursor-planner.mdc` scoped rule frontmatter and expanded adapter validation, IDE activation, and SSE stream tests.
|
|
11
|
+
|
|
3
12
|
## 0.1.3
|
|
4
13
|
|
|
5
14
|
- Added Antigravity runtime adapter support with `agent-kit init --activate antigravity`, `antigravity/plugin.json`, native `/setup`, `/audit`, `/plan`, `/handoff`, `/frontend`, `/security`, `/copy`, `/ship`, and `/upgrade` command files, and portable `runtime-skills/*/SKILL.md` wrappers.
|
|
@@ -18,6 +18,19 @@ Use `AGENTS.md` as the primary project instruction surface.
|
|
|
18
18
|
- `.agent-kit/council-sessions/`
|
|
19
19
|
- `QUALITY_GATES.md`
|
|
20
20
|
|
|
21
|
+
## Council Custom Agents
|
|
22
|
+
|
|
23
|
+
After `agent-kit init --activate codex`, council specialists live in `.codex/agents/*.toml`.
|
|
24
|
+
|
|
25
|
+
Spawn a dedicated custom agent instead of role-playing the whole council in one thread:
|
|
26
|
+
|
|
27
|
+
- **Planning / scope:** `.codex/agents/planner.toml`
|
|
28
|
+
- **Security / RLS / secrets:** `.codex/agents/security-reviewer.toml` (high reasoning effort)
|
|
29
|
+
- **Frontend UI:** `.codex/agents/frontend-design-lead.toml`
|
|
30
|
+
- **QA / tests:** `.codex/agents/qa-engineer.toml`
|
|
31
|
+
|
|
32
|
+
Each file sets `model_reasoning_effort` from `.agent-kit/model-routing.json`. Verify model names in your Codex environment against `MODEL_ROUTING.md`.
|
|
33
|
+
|
|
21
34
|
## Operating Rule
|
|
22
35
|
|
|
23
36
|
When a task is planning-oriented, ambiguous, risky, frontend-facing, security-sensitive, or release-related, start from the roster workflow instead of treating the request as a single generic implementation pass.
|
|
@@ -34,3 +47,5 @@ Record in `ASSISTANT_ADAPTERS.md`:
|
|
|
34
47
|
- The command, session, or screenshot that proves the instructions loaded.
|
|
35
48
|
- The model-selection setting or profile used for the active role.
|
|
36
49
|
- Any known limitations or manual invocation steps.
|
|
50
|
+
|
|
51
|
+
Run `agent-kit adapter validate codex` after activation.
|
|
@@ -20,6 +20,7 @@ Use `AGENTS.md`, `AGENT_ROSTER.md`, `.agent-kit/agent-roster.json`, `MODEL_ROUTI
|
|
|
20
20
|
- Meaningful work should read project context and active corrections first.
|
|
21
21
|
- Human corrections should be recorded before continuing and promoted to durable project or agent correction rules when they should affect future work.
|
|
22
22
|
- Meaningful multi-agent work should use `agent-kit session checkpoint --file <json>` or individual `agent-kit session ...` commands and render Markdown evidence when available.
|
|
23
|
+
- For council work, delegate to the matching project subagent in `.cursor/agents/` instead of role-playing every role in the main thread.
|
|
23
24
|
|
|
24
25
|
## Validation
|
|
25
26
|
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Require Frontend Design Lead evidence for significant UI and component work.
|
|
3
|
+
globs:
|
|
4
|
+
- "src/app/**"
|
|
5
|
+
- "src/components/**"
|
|
6
|
+
- "**/*.css"
|
|
7
|
+
alwaysApply: false
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# Frontend design gate reminders
|
|
11
|
+
|
|
12
|
+
Significant UI changes require **Frontend Design Lead** review: brand/content intake, creative-direction rationale, reference-led critique, product-quality scorecard, accessibility, and visual QA evidence.
|
|
13
|
+
|
|
14
|
+
Delegate to `@frontend-design-lead` in `.cursor/agents/frontend-design-lead.md` for isolated design review context.
|
|
15
|
+
|
|
16
|
+
Reject generic AI-looking UI that is not specific to the product workflow and content model.
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Route ambiguous, planning, and cross-layer requests through the Planner workflow first.
|
|
3
|
+
globs:
|
|
4
|
+
- "**/*"
|
|
5
|
+
alwaysApply: false
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
# Planner routing
|
|
9
|
+
|
|
10
|
+
When a request is ambiguous, planning-oriented, roadmap-related, or spans multiple layers, start with the **Planner** workflow before implementation.
|
|
11
|
+
|
|
12
|
+
Delegate to the `@planner` subagent in `.cursor/agents/planner.md` when the task needs isolated planning context.
|
|
13
|
+
|
|
14
|
+
Read project context, corrections, and `AGENT_ROSTER.md` before choosing a workflow.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Require Security Reviewer for auth, RLS, secrets, API mutations, and external calls.
|
|
3
|
+
globs:
|
|
4
|
+
- "supabase/**"
|
|
5
|
+
- "**/auth/**"
|
|
6
|
+
- "**/api/**"
|
|
7
|
+
- "**/middleware.ts"
|
|
8
|
+
- "**/proxy.ts"
|
|
9
|
+
alwaysApply: false
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# Security gate reminders
|
|
13
|
+
|
|
14
|
+
Auth, RLS, data mutation, dependency, secret, external-call, and release-risk changes require **Security Reviewer** review before acceptance.
|
|
15
|
+
|
|
16
|
+
Delegate to `@security-reviewer` in `.cursor/agents/security-reviewer.md` or Task `security-review` for isolated review context.
|
|
17
|
+
|
|
18
|
+
Verify OWASP Top 10, IDOR, SSRF, injection, broken auth, and least-privilege boundaries.
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
# Codex model-selection example for Agent Kit.
|
|
2
2
|
# Copy the relevant comments into ~/.codex/config.toml or a trusted project .codex/config.toml.
|
|
3
3
|
# Verify current model availability in your Codex environment before uncommenting.
|
|
4
|
+
#
|
|
5
|
+
# Custom council agents generated by agent-kit live under .codex/agents/*.toml.
|
|
6
|
+
# Run `agent-kit init --activate codex` to create them from the project roster.
|
|
4
7
|
|
|
5
8
|
# June 2026 Agent Kit suggested baseline:
|
|
6
9
|
# model = "gpt-5.5"
|