@pactor-app/skill 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/SKILL.md +7 -3
- package/package.json +1 -1
package/SKILL.md
CHANGED
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
name: pactor
|
|
3
3
|
description: |
|
|
4
4
|
Agent skill for rapidly building Pactor Server-Driven UI applications. Covers app bootstrapping, DSL authoring, custom components, theming, events, routing, resources, permissions, and project commands.
|
|
5
|
-
version: 1.
|
|
5
|
+
version: 0.1.1
|
|
6
6
|
---
|
|
7
7
|
|
|
8
8
|
# pactor-app
|
|
9
9
|
|
|
10
10
|
## When to activate
|
|
11
11
|
|
|
12
|
-
Activate this skill when the user works with **Pactor**
|
|
12
|
+
Activate this skill when the user works with **Pactor** — any `@pactor-app/*` package or the `pactor-app` meta package:
|
|
13
13
|
|
|
14
14
|
- Building or extending a Pactor application
|
|
15
15
|
- Using `createPactorApplication`, `@pactor-app/app`, or `StaticDslLoader`
|
|
@@ -52,6 +52,7 @@ Activate this skill when the user works with **Pactor** or any `pactor-*` packag
|
|
|
52
52
|
| `packages/vite-plugin` | `@pactor-app/vite-plugin` | Vite YAML modules, build-time validation, HMR |
|
|
53
53
|
| `packages/cli` | `@pactor-app/cli` | DSL validation, inspection, scaffolding |
|
|
54
54
|
| `packages/app` | `@pactor-app/app` | One-stop composition (`createPactorApplication`) |
|
|
55
|
+
| `packages/pactor` | `pactor-app` | Meta package — depends on all modules, re-exports `@pactor-app/app` |
|
|
55
56
|
|
|
56
57
|
## Dependency rules
|
|
57
58
|
|
|
@@ -72,7 +73,10 @@ core ← schema ← expression ← runtime
|
|
|
72
73
|
### Install
|
|
73
74
|
|
|
74
75
|
```bash
|
|
75
|
-
#
|
|
76
|
+
# meta package: installs every module at once
|
|
77
|
+
pnpm add pactor-app
|
|
78
|
+
|
|
79
|
+
# or install only what you need (shadcn is the single built-in UI kit)
|
|
76
80
|
pnpm add @pactor-app/app @pactor-app/ui
|
|
77
81
|
```
|
|
78
82
|
|