@pavp/wavefront 1.2.0 → 1.2.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pavp/wavefront",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"description": "Claude Code frontend-engineering agent framework for scaffold-nextjs-app apps (Next.js/React/MUI/Clean Architecture). Installs agents, skills, and an orchestration loop into a project's .claude/.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"wavefront": "bin/wavefront.js"
|
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: reference-note-module
|
|
3
|
+
description: Canonical end-to-end Clean-Arch module agents read to copy current scaffold idioms.
|
|
4
|
+
source: scaffold-nextjs-app/src/modules/todo (types, api, repository, gateways, stores, selectors, views/hooks, components)
|
|
5
|
+
source_version: 8edaa0b
|
|
6
|
+
---
|
|
7
|
+
|
|
1
8
|
# Reference module — `note` (canonical Clean-Arch chain)
|
|
2
9
|
|
|
3
10
|
> **This is the framework's own idiom anchor.** Agents read THIS file to copy current scaffold idioms — they do NOT depend on the target app keeping `src/modules/todo`/`auth` (apps routinely delete the example modules).
|
|
@@ -21,7 +21,7 @@ Drift = the scaffold's `source` files changed since `source_version`.
|
|
|
21
21
|
|
|
22
22
|
Inputs: path to a scaffold checkout (or the generated app, which mirrors it). Without it, degrade to a frontmatter-only report (list pins, can't diff).
|
|
23
23
|
|
|
24
|
-
1. **Collect pins:** read `source_version` + `source` from all `.claude/skills/*/SKILL.md`. Confirm they agree on one version (they should).
|
|
24
|
+
1. **Collect pins:** read `source_version` + `source` from all `.claude/skills/*/SKILL.md` **and the bundled reference `.claude/reference/module/note-module.md`** (it carries the same frontmatter pin). Confirm they agree on one version (they should).
|
|
25
25
|
2. **Get scaffold HEAD:** in the scaffold repo, `git rev-parse --short HEAD`. If it equals the pin → CLEAN, stop.
|
|
26
26
|
3. **Diff source files:** `git diff --name-only <pin> <HEAD> -- <union of all skills' source paths>`.
|
|
27
27
|
- Map each changed file back to the skill(s) whose `source:` references it.
|