@baldurpan/create-ai-workflow 0.4.0 → 0.4.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": "@baldurpan/create-ai-workflow",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "Overlay a tiered planning workflow — roadmap, plans, phase ledgers, verification gates — onto an existing repository, for coding agents.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
# Origin of this standards tree, recorded so `update` can report when upstream has moved.
|
|
2
2
|
# Managed by @baldurpan/create-ai-workflow. Replace this whole directory with:
|
|
3
3
|
# npx @baldurpan/create-ai-workflow standards add <git-url>
|
|
4
|
-
# Vendored verbatim, with
|
|
5
|
-
# ships as `templates/_dot_gitignore` and is
|
|
4
|
+
# Vendored verbatim, with two mechanical renames:
|
|
5
|
+
# - npm cannot publish a file called `.gitignore`, so it ships as `templates/_dot_gitignore` and is
|
|
6
|
+
# written back with its leading dot at install time.
|
|
7
|
+
# - `templates/biome.json` ships and installs as `templates/biome-example.json`. Biome discovers
|
|
8
|
+
# nested configs by name, so a file called `biome.json` anywhere under a repository is a live
|
|
9
|
+
# config for the files beside it — here and in every project this tree is installed into.
|
|
6
10
|
origin=https://github.com/baldurpan/ai-engineering-standards
|
|
7
11
|
ref=dd8b7e206ff46d7555aabb2522c792d9272510b9
|
|
8
12
|
vendored=2026-05-19T22:07:27+00:00
|
|
@@ -86,7 +86,7 @@ You are working inside a project that references this standards repository. Load
|
|
|
86
86
|
| [`tooling/`](tooling/) | TanStack, Nx, Vite, Biome, Tailwind, shadcn, Prisma |
|
|
87
87
|
| [`security/`](security/) | Validation, secrets, auth, API security |
|
|
88
88
|
| [`examples/`](examples/) | Concrete good and bad code examples |
|
|
89
|
-
| [`templates/`](templates/) | Drop-in starter files — `CLAUDE.md`, `AGENTS.md`, `tsconfig.json`, `biome.json`, `eslint.config.js`, `.gitignore`, `.editorconfig`, `.nvmrc`, project README, PR template |
|
|
89
|
+
| [`templates/`](templates/) | Drop-in starter files — `CLAUDE.md`, `AGENTS.md`, `tsconfig.json`, `biome-example.json`, `eslint.config.js`, `.gitignore`, `.editorconfig`, `.nvmrc`, project README, PR template |
|
|
90
90
|
| [`php/`](php/) | **Secondary stack.** PHP standards — only when the task is explicitly PHP |
|
|
91
91
|
|
|
92
92
|
### Core Philosophy
|
|
@@ -18,7 +18,9 @@ pnpm add --save-dev --save-exact @biomejs/biome
|
|
|
18
18
|
pnpm biome init
|
|
19
19
|
```
|
|
20
20
|
|
|
21
|
-
Or copy [`templates/biome.json`](../templates/biome.json) into your project as
|
|
21
|
+
Or copy [`templates/biome-example.json`](../templates/biome-example.json) into your project as
|
|
22
|
+
`biome.json` — it ships under an `-example` name so Biome does not pick it up as a live config where
|
|
23
|
+
these standards are vendored.
|
|
22
24
|
|
|
23
25
|
## Key Commands
|
|
24
26
|
|
|
@@ -68,7 +70,8 @@ Enable format on save:
|
|
|
68
70
|
|
|
69
71
|
## Config Reference
|
|
70
72
|
|
|
71
|
-
See [`templates/biome.json`](../templates/biome.json) for the canonical Biome config.
|
|
73
|
+
See [`templates/biome-example.json`](../templates/biome-example.json) for the canonical Biome config.
|
|
74
|
+
Rename it to `biome.json` when you copy it in.
|
|
72
75
|
|
|
73
76
|
## Migrating from ESLint + Prettier
|
|
74
77
|
|
|
File without changes
|