@pugi/cli 1.0.0-alpha.19 → 1.0.0-alpha.191
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/models.json +1 -0
- package/package.json +19 -6
- package/skills/a11y/SKILL.md +19 -0
- package/skills/ab-test-analysis/SKILL.md +15 -0
- package/skills/ai-sdk/SKILL.md +19 -0
- package/skills/api-integration/SKILL.md +19 -0
- package/skills/architecture-review/SKILL.md +19 -0
- package/skills/brand-voice/SKILL.md +19 -0
- package/skills/ci-cd-pipeline/SKILL.md +15 -0
- package/skills/code-review/SKILL.md +19 -0
- package/skills/competitor-analysis/SKILL.md +19 -0
- package/skills/content-design/SKILL.md +27 -0
- package/skills/css-tailwind/SKILL.md +31 -0
- package/skills/css-tailwind/quirks.md +86 -0
- package/skills/db-vector/SKILL.md +19 -0
- package/skills/design-radix/SKILL.md +19 -0
- package/skills/design-system/SKILL.md +27 -0
- package/skills/detecting-data-anomalies/SKILL.md +15 -0
- package/skills/docker-deploy/SKILL.md +15 -0
- package/skills/edge-case-finder/SKILL.md +19 -0
- package/skills/fonts/SKILL.md +19 -0
- package/skills/framework-grammy/SKILL.md +19 -0
- package/skills/framework-mastra/SKILL.md +19 -0
- package/skills/framework-nestjs/SKILL.md +19 -0
- package/skills/framework-prisma/SKILL.md +19 -0
- package/skills/funnel-optimization/SKILL.md +19 -0
- package/skills/icons/SKILL.md +19 -0
- package/skills/landing-templates/SKILL.md +19 -0
- package/skills/market-research/SKILL.md +19 -0
- package/skills/metrics-dashboard/SKILL.md +19 -0
- package/skills/monitoring-setup/SKILL.md +15 -0
- package/skills/motion/SKILL.md +19 -0
- package/skills/nestjs-api/SKILL.md +30 -0
- package/skills/nestjs-api/quirks.md +36 -0
- package/skills/nextjs-page/SKILL.md +19 -0
- package/skills/orchestrating-multi-agent-systems/SKILL.md +19 -0
- package/skills/preprocessing-data/SKILL.md +15 -0
- package/skills/project-memory-keeper/SKILL.md +19 -0
- package/skills/public-apis/SKILL.md +19 -0
- package/skills/pugi-patterns/SKILL.md +19 -0
- package/skills/react-component/SKILL.md +19 -0
- package/skills/sprint-planning/SKILL.md +19 -0
- package/skills/stack-selection/SKILL.md +15 -0
- package/skills/standup-summary/SKILL.md +15 -0
- package/skills/task-decomposition/SKILL.md +19 -0
- package/skills/team-routing/SKILL.md +15 -0
- package/skills/tech-survey/SKILL.md +15 -0
- package/skills/test-plan/SKILL.md +15 -0
- package/skills/typescript-refactor/SKILL.md +15 -0
- package/skills/ui-components/SKILL.md +26 -0
- package/skills/ux-patterns/SKILL.md +27 -0
- package/skills/web-platform/SKILL.md +19 -0
- package/skills/web-scrape/SKILL.md +19 -0
- package/skills/web-search/SKILL.md +15 -0
- package/skills/webapp-testing/SKILL.md +29 -0
- package/skills/webapp-testing/quirks.md +26 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pugi/cli",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.191",
|
|
4
4
|
"description": "Pugi CLI - terminal-native software execution system",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://pugi.io",
|
|
@@ -19,6 +19,9 @@
|
|
|
19
19
|
"bin": {
|
|
20
20
|
"pugi": "./bin/pugi"
|
|
21
21
|
},
|
|
22
|
+
"scripts": {
|
|
23
|
+
"postinstall": "node ./postinstall.mjs"
|
|
24
|
+
},
|
|
22
25
|
"os": [
|
|
23
26
|
"darwin",
|
|
24
27
|
"linux",
|
|
@@ -28,10 +31,20 @@
|
|
|
28
31
|
"arm64",
|
|
29
32
|
"x64"
|
|
30
33
|
],
|
|
34
|
+
"files": [
|
|
35
|
+
"bin",
|
|
36
|
+
"skills",
|
|
37
|
+
"models.json",
|
|
38
|
+
"postinstall.mjs",
|
|
39
|
+
"README.md",
|
|
40
|
+
"LICENSE"
|
|
41
|
+
],
|
|
31
42
|
"optionalDependencies": {
|
|
32
|
-
"@pugi/cli-darwin-arm64": "1.0.0-alpha.
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
"
|
|
43
|
+
"@pugi/cli-darwin-arm64": "1.0.0-alpha.191",
|
|
44
|
+
"@pugi/cli-darwin-x64": "1.0.0-alpha.191",
|
|
45
|
+
"@pugi/cli-linux-arm64": "1.0.0-alpha.191",
|
|
46
|
+
"@pugi/cli-linux-x64": "1.0.0-alpha.191",
|
|
47
|
+
"@pugi/cli-windows-arm64": "1.0.0-alpha.191",
|
|
48
|
+
"@pugi/cli-windows-x64": "1.0.0-alpha.191"
|
|
36
49
|
}
|
|
37
|
-
}
|
|
50
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: a11y
|
|
3
|
+
description: "W3C WCAG 2.x grounded accessibility — contrast, keyboard, ARIA, screen readers. Shared with QA (Vera)."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<!-- Generated by Pugi. Do not hand-edit; regenerate from the persona pack. -->
|
|
7
|
+
|
|
8
|
+
# Accessibility (WCAG)
|
|
9
|
+
|
|
10
|
+
W3C WCAG 2.x grounded accessibility — contrast, keyboard, ARIA, screen readers. Shared with QA (Vera).
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
## Grounding
|
|
14
|
+
|
|
15
|
+
This skill retrieves from the Anvil RAG workspace `a11y_baseline`. Ask grounded questions in that domain before inventing answers.
|
|
16
|
+
|
|
17
|
+
## Owner
|
|
18
|
+
|
|
19
|
+
Owner persona: `designer` (THE_TEN Agent×Skill×RAG matrix).
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ab-test-analysis
|
|
3
|
+
description: "Sets up and analyses A/B tests with confidence intervals."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<!-- Generated by Pugi. Do not hand-edit; regenerate from the persona pack. -->
|
|
7
|
+
|
|
8
|
+
# A/B Test Analysis
|
|
9
|
+
|
|
10
|
+
Sets up and analyses A/B tests with confidence intervals.
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
## Owner
|
|
14
|
+
|
|
15
|
+
Owner persona: `analyst` (THE_TEN Agent×Skill×RAG matrix).
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ai-sdk
|
|
3
|
+
description: "Grounded provider-SDK knowledge — tool use, structured outputs, streaming, prompt caching."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<!-- Generated by Pugi. Do not hand-edit; regenerate from the persona pack. -->
|
|
7
|
+
|
|
8
|
+
# AI SDK Cookbook Knowledge
|
|
9
|
+
|
|
10
|
+
Grounded provider-SDK knowledge — tool use, structured outputs, streaming, prompt caching.
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
## Grounding
|
|
14
|
+
|
|
15
|
+
This skill retrieves from the Anvil RAG workspace `ai_sdk_cookbook`. Ask grounded questions in that domain before inventing answers.
|
|
16
|
+
|
|
17
|
+
## Owner
|
|
18
|
+
|
|
19
|
+
Owner persona: `architect` (THE_TEN Agent×Skill×RAG matrix).
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: api-integration
|
|
3
|
+
description: "Builds typed REST/GraphQL clients with auth, retries, pagination — grounded in the public APIs catalog."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<!-- Generated by Pugi. Do not hand-edit; regenerate from the persona pack. -->
|
|
7
|
+
|
|
8
|
+
# API Integration
|
|
9
|
+
|
|
10
|
+
Builds typed REST/GraphQL clients with auth, retries, pagination — grounded in the public APIs catalog.
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
## Grounding
|
|
14
|
+
|
|
15
|
+
This skill retrieves from the Anvil RAG workspace `public_apis_catalog`. Ask grounded questions in that domain before inventing answers.
|
|
16
|
+
|
|
17
|
+
## Owner
|
|
18
|
+
|
|
19
|
+
Owner persona: `dev` (THE_TEN Agent×Skill×RAG matrix).
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: architecture-review
|
|
3
|
+
description: "Reviews system design against the canonical pattern catalog, calls out anti-patterns, suggests proven alternatives."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<!-- Generated by Pugi. Do not hand-edit; regenerate from the persona pack. -->
|
|
7
|
+
|
|
8
|
+
# Architecture Review
|
|
9
|
+
|
|
10
|
+
Reviews system design against the canonical pattern catalog, calls out anti-patterns, suggests proven alternatives.
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
## Grounding
|
|
14
|
+
|
|
15
|
+
This skill retrieves from the Anvil RAG workspace `pugi_patterns`. Ask grounded questions in that domain before inventing answers.
|
|
16
|
+
|
|
17
|
+
## Owner
|
|
18
|
+
|
|
19
|
+
Owner persona: `architect` (THE_TEN Agent×Skill×RAG matrix).
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: brand-voice
|
|
3
|
+
description: "Voice and tone frameworks — style guides, headline craft, direct-response copy."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<!-- Generated by Pugi. Do not hand-edit; regenerate from the persona pack. -->
|
|
7
|
+
|
|
8
|
+
# Brand Voice
|
|
9
|
+
|
|
10
|
+
Voice and tone frameworks — style guides, headline craft, direct-response copy.
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
## Grounding
|
|
14
|
+
|
|
15
|
+
This skill retrieves from the Anvil RAG workspace `marketing_frameworks`. Ask grounded questions in that domain before inventing answers.
|
|
16
|
+
|
|
17
|
+
## Owner
|
|
18
|
+
|
|
19
|
+
Owner persona: `designer` (THE_TEN Agent×Skill×RAG matrix).
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ci-cd-pipeline
|
|
3
|
+
description: "Authors CI workflows for build -> test -> deploy."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<!-- Generated by Pugi. Do not hand-edit; regenerate from the persona pack. -->
|
|
7
|
+
|
|
8
|
+
# CI/CD Pipeline
|
|
9
|
+
|
|
10
|
+
Authors CI workflows for build -> test -> deploy.
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
## Owner
|
|
14
|
+
|
|
15
|
+
Owner persona: `devops` (THE_TEN Agent×Skill×RAG matrix).
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: code-review
|
|
3
|
+
description: "Reviews diffs for correctness, design, security (OWASP-grounded), performance, tests."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<!-- Generated by Pugi. Do not hand-edit; regenerate from the persona pack. -->
|
|
7
|
+
|
|
8
|
+
# Code Review
|
|
9
|
+
|
|
10
|
+
Reviews diffs for correctness, design, security (OWASP-grounded), performance, tests.
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
## Grounding
|
|
14
|
+
|
|
15
|
+
This skill retrieves from the Anvil RAG workspace `security_baseline`. Ask grounded questions in that domain before inventing answers.
|
|
16
|
+
|
|
17
|
+
## Owner
|
|
18
|
+
|
|
19
|
+
Owner persona: `dev` (THE_TEN Agent×Skill×RAG matrix).
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: competitor-analysis
|
|
3
|
+
description: "Surveys competitors — features, pricing, stack, positioning — grounded in the SEO/GEO metadata surface."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<!-- Generated by Pugi. Do not hand-edit; regenerate from the persona pack. -->
|
|
7
|
+
|
|
8
|
+
# Competitor Analysis
|
|
9
|
+
|
|
10
|
+
Surveys competitors — features, pricing, stack, positioning — grounded in the SEO/GEO metadata surface.
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
## Grounding
|
|
14
|
+
|
|
15
|
+
This skill retrieves from the Anvil RAG workspace `seo_geo`. Ask grounded questions in that domain before inventing answers.
|
|
16
|
+
|
|
17
|
+
## Owner
|
|
18
|
+
|
|
19
|
+
Owner persona: `researcher` (THE_TEN Agent×Skill×RAG matrix).
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: content-design
|
|
3
|
+
description: "UX writing — microcopy, empty states, error messages, onboarding copy."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<!-- Generated by Pugi. Do not hand-edit; regenerate from the persona pack. -->
|
|
7
|
+
|
|
8
|
+
# Content Design
|
|
9
|
+
|
|
10
|
+
UX writing — microcopy, empty states, error messages, onboarding copy.
|
|
11
|
+
|
|
12
|
+
## Rules
|
|
13
|
+
|
|
14
|
+
- Write action + concrete result + a number the reader can check. "A smart solution for your needs" tells nobody what happens after the click.
|
|
15
|
+
- A button says what it does: "Save API key", not "Continue". A toast afterwards says what happened: "Saved".
|
|
16
|
+
- An empty state names what is missing AND offers the action that fills it. "No items" is a dead end.
|
|
17
|
+
- An error says what went wrong and what to do next. An error the reader cannot act on is an apology, not a message.
|
|
18
|
+
- Delete a third of the words and read it again. Welcome paragraphs and instructions are what a design writes when the screen is not self-evident — fix the screen instead.
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
## Grounding
|
|
22
|
+
|
|
23
|
+
This skill retrieves from the Anvil RAG workspace `design_content`. Ask grounded questions in that domain before inventing answers.
|
|
24
|
+
|
|
25
|
+
## Owner
|
|
26
|
+
|
|
27
|
+
Owner persona: `designer` (THE_TEN Agent×Skill×RAG matrix).
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: css-tailwind
|
|
3
|
+
description: "Refactors CSS to Tailwind, fixes spacing rhythm, ensures dark/light parity."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<!-- Generated by Pugi. Do not hand-edit; regenerate from the persona pack. -->
|
|
7
|
+
|
|
8
|
+
# Tailwind Polish
|
|
9
|
+
|
|
10
|
+
Refactors CSS to Tailwind, fixes spacing rhythm, ensures dark/light parity.
|
|
11
|
+
|
|
12
|
+
## Rules
|
|
13
|
+
|
|
14
|
+
- Check three widths before calling a screen done: 390, 768, 1440. At 390 buttons must not run off, text must not clip, and nothing may scroll sideways.
|
|
15
|
+
- The main action must be visible and tappable at 390 without zooming. Touch targets are at least 44px.
|
|
16
|
+
- Mobile is a layout decision, not a stacked desktop. If the phone version is the desktop columns in a pile, it has not been designed.
|
|
17
|
+
- Both themes are shipped. A colour that only reads on the dark ground is a bug on the light one; take colour from variables so the theme decides.
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
## Known failure modes
|
|
21
|
+
|
|
22
|
+
Read `quirks.md` in this directory BEFORE writing code in this domain. It records 8 failures that reached a customer build, each with the symptom, the cause, and the check that tells them apart.
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
## Grounding
|
|
26
|
+
|
|
27
|
+
This skill retrieves from the Anvil RAG workspace `ui_registry`. Ask grounded questions in that domain before inventing answers.
|
|
28
|
+
|
|
29
|
+
## Owner
|
|
30
|
+
|
|
31
|
+
Owner persona: `frontend` (THE_TEN Agent×Skill×RAG matrix).
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
<!-- Generated by Pugi. Do not hand-edit; regenerate from the persona pack. -->
|
|
2
|
+
|
|
3
|
+
# Tailwind Polish — known failure modes
|
|
4
|
+
|
|
5
|
+
Each entry below reached a customer build. The symptom is what you will
|
|
6
|
+
actually observe; the build succeeds in every one of these cases.
|
|
7
|
+
|
|
8
|
+
## v3-directives-under-v4
|
|
9
|
+
|
|
10
|
+
**Symptom.** The build succeeds and the page renders with NO styling at all — plain black text on white, browser default fonts.
|
|
11
|
+
|
|
12
|
+
**Cause.** The stylesheet still opens with the v3 directives `@tailwind base/components/utilities` while package.json pins tailwindcss v4. Those directives do not exist in v4, so PostCSS emits no utility classes and reports no error.
|
|
13
|
+
|
|
14
|
+
**Check.** Read the tailwindcss version in package.json, then the first lines of src/index.css. v4 must open with `@import "tailwindcss";`.
|
|
15
|
+
|
|
16
|
+
**Fix.** Replace the three directives with `@import "tailwindcss";`, or put tailwindcss back on ^3 and use `tailwindcss: {}` in postcss.config.js instead of `@tailwindcss/postcss`. The two halves must agree.
|
|
17
|
+
|
|
18
|
+
## palette-in-root-without-theme
|
|
19
|
+
|
|
20
|
+
**Symptom.** Layout works — spacing, flex, max-width all apply — but every colour is missing: no backgrounds, no surfaces, text is default black.
|
|
21
|
+
|
|
22
|
+
**Cause.** The palette is declared as `--color-*` variables inside `:root`. v4 turns a variable into a utility class only when it is declared inside an `@theme` block, and it ignores tailwind.config.js unless the stylesheet asks with `@config`.
|
|
23
|
+
|
|
24
|
+
**Check.** If `:root` contains `--color-` and the file has neither `@theme` nor `@config`, the token classes generate nothing. Confirm by grepping the BUILT css for one token class, e.g. `bg-background`.
|
|
25
|
+
|
|
26
|
+
**Fix.** Move the palette into an `@theme` block, or add `@config "./tailwind.config.js";`. Then grep the built css for the classes the components use before reporting done.
|
|
27
|
+
|
|
28
|
+
## unlayered-global-reset
|
|
29
|
+
|
|
30
|
+
**Symptom.** Colours and borders are correct but the page has no rhythm — `px-4` computes to 0px, `mx-auto` does not centre, nothing has margins.
|
|
31
|
+
|
|
32
|
+
**Cause.** A global `* { margin: 0; padding: 0 }` sits outside any `@layer`. v4 puts its utilities in cascade layers, and unlayered css beats layered css regardless of specificity, so one rule overrides every spacing utility at once.
|
|
33
|
+
|
|
34
|
+
**Check.** Search the stylesheet for a `*` selector setting margin or padding that is not inside `@layer`. Then inspect a padded element in the browser and read the computed padding.
|
|
35
|
+
|
|
36
|
+
**Fix.** Wrap the reset in `@layer base { ... }`, or delete it — Tailwind's own preflight already does this job.
|
|
37
|
+
|
|
38
|
+
## v4-entry-under-v3
|
|
39
|
+
|
|
40
|
+
**Symptom.** The build succeeds and the page renders unstyled, the mirror image of the first quirk.
|
|
41
|
+
|
|
42
|
+
**Cause.** The stylesheet uses the v4 entry `@import "tailwindcss"` while package.json pins tailwindcss v3, which does not understand it.
|
|
43
|
+
|
|
44
|
+
**Check.** Compare the pinned major in package.json against the stylesheet entry line. They must agree.
|
|
45
|
+
|
|
46
|
+
**Fix.** Use the v3 directives for a v3 pin, or move the pin to v4. Do not mix the two dialects.
|
|
47
|
+
|
|
48
|
+
## black-bars-on-a-phone
|
|
49
|
+
|
|
50
|
+
**Symptom.** On a real phone the app has black bands above and below the content, and they appear or grow when the page is pulled. On desktop it looks fine.
|
|
51
|
+
|
|
52
|
+
**Cause.** The ground colour is set on `body` only. A mobile browser paints the area a rubber-band overscroll exposes from the ROOT element, so `html` keeps the user-agent default — black in dark mode.
|
|
53
|
+
|
|
54
|
+
**Check.** Look for a `bg-*` on `body` in the base layer with nothing on `html`. Confirm on a phone by dragging the page past its end.
|
|
55
|
+
|
|
56
|
+
**Fix.** Set the same background on `html` as on `body`, inside `@layer base`.
|
|
57
|
+
|
|
58
|
+
## vh-leaves-dead-space-on-mobile
|
|
59
|
+
|
|
60
|
+
**Symptom.** A full-height layout leaves a strip of empty space at the bottom on a phone, and the content jumps when the address bar collapses.
|
|
61
|
+
|
|
62
|
+
**Cause.** `min-h-screen` compiles to `100vh`, which on mobile means the viewport WITH the browser chrome expanded and never changes. The visible area is smaller, then larger.
|
|
63
|
+
|
|
64
|
+
**Check.** Search the layout for `min-h-screen` / `h-screen` and open the page on a phone-width viewport.
|
|
65
|
+
|
|
66
|
+
**Fix.** Use `min-h-dvh` (dynamic viewport height), which follows the chrome as it collapses.
|
|
67
|
+
|
|
68
|
+
## short-form-marooned-on-a-tall-screen
|
|
69
|
+
|
|
70
|
+
**Symptom.** On a phone the whole app is a narrow card floating in the middle of a mostly empty screen; on a laptop the same layout looks balanced.
|
|
71
|
+
|
|
72
|
+
**Cause.** A shell of `min-h-screen flex items-center justify-center` with `max-w-md` centres a short form in a tall viewport. What reads as elegant at 1440 reads as unfinished at 390.
|
|
73
|
+
|
|
74
|
+
**Check.** Render at 390 wide and ask what fraction of the screen the content occupies. Below roughly half, it is marooned.
|
|
75
|
+
|
|
76
|
+
**Fix.** Align to the top on small screens and centre only from `sm:` upward — `items-start sm:items-center` — and let the card go full width with real padding (`w-full px-4 sm:max-w-md`).
|
|
77
|
+
|
|
78
|
+
## dev-script-not-at-root
|
|
79
|
+
|
|
80
|
+
**Symptom.** The app builds and runs, but the hosted preview shows nothing or a 503 — the runner reports it found no dev command.
|
|
81
|
+
|
|
82
|
+
**Cause.** In a monorepo the dev script lives in a workspace package (apps/web, packages/web, client, frontend) or is named `dev:web` rather than `dev`, and a root-only lookup misses it.
|
|
83
|
+
|
|
84
|
+
**Check.** Read the root package.json scripts, then the workspace package's own scripts before concluding there is no dev command.
|
|
85
|
+
|
|
86
|
+
**Fix.** Declare the runnable script at the root, or make sure the app directory is the one handed to the runner. State the app directory explicitly rather than letting it be guessed.
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: db-vector
|
|
3
|
+
description: "Grounded pgvector knowledge — index types (HNSW/IVFFlat), distance operators, tuning."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<!-- Generated by Pugi. Do not hand-edit; regenerate from the persona pack. -->
|
|
7
|
+
|
|
8
|
+
# pgvector Knowledge
|
|
9
|
+
|
|
10
|
+
Grounded pgvector knowledge — index types (HNSW/IVFFlat), distance operators, tuning.
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
## Grounding
|
|
14
|
+
|
|
15
|
+
This skill retrieves from the Anvil RAG workspace `db_vector`. Ask grounded questions in that domain before inventing answers.
|
|
16
|
+
|
|
17
|
+
## Owner
|
|
18
|
+
|
|
19
|
+
Owner persona: `architect` (THE_TEN Agent×Skill×RAG matrix).
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: design-radix
|
|
3
|
+
description: "Radix UI primitive composition — slot trees, prop APIs, controlled/uncontrolled patterns."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<!-- Generated by Pugi. Do not hand-edit; regenerate from the persona pack. -->
|
|
7
|
+
|
|
8
|
+
# Radix Primitives
|
|
9
|
+
|
|
10
|
+
Radix UI primitive composition — slot trees, prop APIs, controlled/uncontrolled patterns.
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
## Grounding
|
|
14
|
+
|
|
15
|
+
This skill retrieves from the Anvil RAG workspace `design_radix`. Ask grounded questions in that domain before inventing answers.
|
|
16
|
+
|
|
17
|
+
## Owner
|
|
18
|
+
|
|
19
|
+
Owner persona: `designer` (THE_TEN Agent×Skill×RAG matrix).
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: design-system
|
|
3
|
+
description: "Defines tokens, components, typography for the product."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<!-- Generated by Pugi. Do not hand-edit; regenerate from the persona pack. -->
|
|
7
|
+
|
|
8
|
+
# Design System Author
|
|
9
|
+
|
|
10
|
+
Defines tokens, components, typography for the product.
|
|
11
|
+
|
|
12
|
+
## Rules
|
|
13
|
+
|
|
14
|
+
- Spacing has THREE levels, not one: inside an element (~8px), between elements (~24px), between sections (64-96px). If everything is 24px apart the eye cannot tell a section from a detail.
|
|
15
|
+
- Colour, spacing and radius come from variables. A hex written in a component is a value that will be wrong in the other theme, and there is always another theme.
|
|
16
|
+
- Type needs a scale with real steps: body 16, and headings that are visibly bigger, not 15 and 16. Body text below 16px is not body text.
|
|
17
|
+
- Numbers that line up in a column get tabular figures.
|
|
18
|
+
- Define a class before using it. A class name that no stylesheet defines silently renders as nothing, and the whole screen quietly falls back to one flat size.
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
## Grounding
|
|
22
|
+
|
|
23
|
+
This skill retrieves from the Anvil RAG workspace `design_tokens`. Ask grounded questions in that domain before inventing answers.
|
|
24
|
+
|
|
25
|
+
## Owner
|
|
26
|
+
|
|
27
|
+
Owner persona: `designer` (THE_TEN Agent×Skill×RAG matrix).
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: detecting-data-anomalies
|
|
3
|
+
description: "Identifies outliers and anomalies in numerical, categorical, and time-series data."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<!-- Generated by Pugi. Do not hand-edit; regenerate from the persona pack. -->
|
|
7
|
+
|
|
8
|
+
# Detecting Data Anomalies
|
|
9
|
+
|
|
10
|
+
Identifies outliers and anomalies in numerical, categorical, and time-series data.
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
## Owner
|
|
14
|
+
|
|
15
|
+
Owner persona: `analyst` (THE_TEN Agent×Skill×RAG matrix).
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: docker-deploy
|
|
3
|
+
description: "Generates Dockerfile + docker-compose for service deployment."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<!-- Generated by Pugi. Do not hand-edit; regenerate from the persona pack. -->
|
|
7
|
+
|
|
8
|
+
# Docker Deploy
|
|
9
|
+
|
|
10
|
+
Generates Dockerfile + docker-compose for service deployment.
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
## Owner
|
|
14
|
+
|
|
15
|
+
Owner persona: `devops` (THE_TEN Agent×Skill×RAG matrix).
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: edge-case-finder
|
|
3
|
+
description: "Audits code for null handling, race conditions, timeouts, injection and parsing edge cases."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<!-- Generated by Pugi. Do not hand-edit; regenerate from the persona pack. -->
|
|
7
|
+
|
|
8
|
+
# Edge Case Finder
|
|
9
|
+
|
|
10
|
+
Audits code for null handling, race conditions, timeouts, injection and parsing edge cases.
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
## Grounding
|
|
14
|
+
|
|
15
|
+
This skill retrieves from the Anvil RAG workspace `security_baseline`. Ask grounded questions in that domain before inventing answers.
|
|
16
|
+
|
|
17
|
+
## Owner
|
|
18
|
+
|
|
19
|
+
Owner persona: `qa` (THE_TEN Agent×Skill×RAG matrix).
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: fonts
|
|
3
|
+
description: "Typeface pairing and selection from the Google Fonts metadata catalog."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<!-- Generated by Pugi. Do not hand-edit; regenerate from the persona pack. -->
|
|
7
|
+
|
|
8
|
+
# Font Catalog
|
|
9
|
+
|
|
10
|
+
Typeface pairing and selection from the Google Fonts metadata catalog.
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
## Grounding
|
|
14
|
+
|
|
15
|
+
This skill retrieves from the Anvil RAG workspace `font_catalog`. Ask grounded questions in that domain before inventing answers.
|
|
16
|
+
|
|
17
|
+
## Owner
|
|
18
|
+
|
|
19
|
+
Owner persona: `designer` (THE_TEN Agent×Skill×RAG matrix).
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: framework-grammy
|
|
3
|
+
description: "Grounded grammY (Telegram bot framework) knowledge — handlers, sessions, conversations, keyboards, webhooks."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<!-- Generated by Pugi. Do not hand-edit; regenerate from the persona pack. -->
|
|
7
|
+
|
|
8
|
+
# grammY Framework Knowledge
|
|
9
|
+
|
|
10
|
+
Grounded grammY (Telegram bot framework) knowledge — handlers, sessions, conversations, keyboards, webhooks.
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
## Grounding
|
|
14
|
+
|
|
15
|
+
This skill retrieves from the Anvil RAG workspace `framework_grammy`. Ask grounded questions in that domain before inventing answers.
|
|
16
|
+
|
|
17
|
+
## Owner
|
|
18
|
+
|
|
19
|
+
Owner persona: `dev` (THE_TEN Agent×Skill×RAG matrix).
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: framework-mastra
|
|
3
|
+
description: "Grounded Mastra orchestrator knowledge — agents, workflows, memory, RAG, evals."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<!-- Generated by Pugi. Do not hand-edit; regenerate from the persona pack. -->
|
|
7
|
+
|
|
8
|
+
# Mastra Framework Knowledge
|
|
9
|
+
|
|
10
|
+
Grounded Mastra orchestrator knowledge — agents, workflows, memory, RAG, evals.
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
## Grounding
|
|
14
|
+
|
|
15
|
+
This skill retrieves from the Anvil RAG workspace `framework_mastra`. Ask grounded questions in that domain before inventing answers.
|
|
16
|
+
|
|
17
|
+
## Owner
|
|
18
|
+
|
|
19
|
+
Owner persona: `architect` (THE_TEN Agent×Skill×RAG matrix).
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: framework-nestjs
|
|
3
|
+
description: "Grounded NestJS 10 knowledge — modules, DI, guards, interceptors, pipes, lifecycle."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<!-- Generated by Pugi. Do not hand-edit; regenerate from the persona pack. -->
|
|
7
|
+
|
|
8
|
+
# NestJS Framework Knowledge
|
|
9
|
+
|
|
10
|
+
Grounded NestJS 10 knowledge — modules, DI, guards, interceptors, pipes, lifecycle.
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
## Grounding
|
|
14
|
+
|
|
15
|
+
This skill retrieves from the Anvil RAG workspace `framework_nestjs`. Ask grounded questions in that domain before inventing answers.
|
|
16
|
+
|
|
17
|
+
## Owner
|
|
18
|
+
|
|
19
|
+
Owner persona: `architect` (THE_TEN Agent×Skill×RAG matrix).
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: framework-prisma
|
|
3
|
+
description: "Grounded Prisma 6 knowledge — schema, migrate, client, RLS patterns."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<!-- Generated by Pugi. Do not hand-edit; regenerate from the persona pack. -->
|
|
7
|
+
|
|
8
|
+
# Prisma Framework Knowledge
|
|
9
|
+
|
|
10
|
+
Grounded Prisma 6 knowledge — schema, migrate, client, RLS patterns.
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
## Grounding
|
|
14
|
+
|
|
15
|
+
This skill retrieves from the Anvil RAG workspace `framework_prisma`. Ask grounded questions in that domain before inventing answers.
|
|
16
|
+
|
|
17
|
+
## Owner
|
|
18
|
+
|
|
19
|
+
Owner persona: `architect` (THE_TEN Agent×Skill×RAG matrix).
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: funnel-optimization
|
|
3
|
+
description: "Audits funnels, finds drop-off points, proposes experiments."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<!-- Generated by Pugi. Do not hand-edit; regenerate from the persona pack. -->
|
|
7
|
+
|
|
8
|
+
# Funnel Optimization
|
|
9
|
+
|
|
10
|
+
Audits funnels, finds drop-off points, proposes experiments.
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
## Grounding
|
|
14
|
+
|
|
15
|
+
This skill retrieves from the Anvil RAG workspace `marketing_frameworks`. Ask grounded questions in that domain before inventing answers.
|
|
16
|
+
|
|
17
|
+
## Owner
|
|
18
|
+
|
|
19
|
+
Owner persona: `analyst` (THE_TEN Agent×Skill×RAG matrix).
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: icons
|
|
3
|
+
description: "Icon selection across Lucide / Tabler / Heroicons / Phosphor."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<!-- Generated by Pugi. Do not hand-edit; regenerate from the persona pack. -->
|
|
7
|
+
|
|
8
|
+
# Icon Catalogs
|
|
9
|
+
|
|
10
|
+
Icon selection across Lucide / Tabler / Heroicons / Phosphor.
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
## Grounding
|
|
14
|
+
|
|
15
|
+
This skill retrieves from the Anvil RAG workspace `icon_catalogs`. Ask grounded questions in that domain before inventing answers.
|
|
16
|
+
|
|
17
|
+
## Owner
|
|
18
|
+
|
|
19
|
+
Owner persona: `designer` (THE_TEN Agent×Skill×RAG matrix).
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: landing-templates
|
|
3
|
+
description: "Landing / dashboard / marketing section templates — hero, pricing, features, CTA, stat cards."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<!-- Generated by Pugi. Do not hand-edit; regenerate from the persona pack. -->
|
|
7
|
+
|
|
8
|
+
# Landing Templates
|
|
9
|
+
|
|
10
|
+
Landing / dashboard / marketing section templates — hero, pricing, features, CTA, stat cards.
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
## Grounding
|
|
14
|
+
|
|
15
|
+
This skill retrieves from the Anvil RAG workspace `landing_templates`. Ask grounded questions in that domain before inventing answers.
|
|
16
|
+
|
|
17
|
+
## Owner
|
|
18
|
+
|
|
19
|
+
Owner persona: `designer` (THE_TEN Agent×Skill×RAG matrix).
|