@owlmeans/create-app 0.1.12 → 0.1.13-rc.0
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": "@owlmeans/create-app",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.13-rc.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Scaffold a minimal fullstack OwlMeans Common app — common + api + web workspaces, shadcn UI navigation/layout, no auth, and a session-scoped in-memory resource. Deploys agent skills via @owlmeans/agent-skills by default.",
|
|
6
6
|
"type": "module",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"template"
|
|
30
30
|
],
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@owlmeans/agent-skills": "^0.1.
|
|
32
|
+
"@owlmeans/agent-skills": "^0.1.12"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@owlmeans/dep-config": "workspace:*",
|
package/template/CLAUDE.md
CHANGED
|
@@ -15,6 +15,13 @@ monorepo with three packages under `sources/` — `common` (shared route entrypo
|
|
|
15
15
|
`api` (`@owlmeans/server-app` backend), and `web` (`@owlmeans/web-panel` + shadcn UI). See the
|
|
16
16
|
`getting-started` skill for how the pieces fit together.
|
|
17
17
|
|
|
18
|
+
## Reuse before you build (mandatory)
|
|
19
|
+
|
|
20
|
+
Before planning or writing any feature, follow the `reuse-code` skill: search for an `@owlmeans/*`
|
|
21
|
+
package (in the installed packages and at https://github.com/owlmeans/common) or existing code that
|
|
22
|
+
already solves the problem **before** proposing a third-party library or a custom solution, and
|
|
23
|
+
simplify whatever you do write. This is required for every planning and development task.
|
|
24
|
+
|
|
18
25
|
## Memory & Meta-file Rules
|
|
19
26
|
|
|
20
27
|
All project memory and meta-information lives **inside this project**, never in `~/.claude/`:
|
|
@@ -15,6 +15,13 @@ monorepo with three packages under `sources/` — `common` (shared route entrypo
|
|
|
15
15
|
`api` (`@owlmeans/server-app` backend), and `web` (`@owlmeans/web-panel` + shadcn UI). See the
|
|
16
16
|
`getting-started.instructions.md` for how the pieces fit together.
|
|
17
17
|
|
|
18
|
+
## Reuse before you build (mandatory)
|
|
19
|
+
|
|
20
|
+
Before planning or writing any feature, follow `reuse-code.instructions.md`: search for an
|
|
21
|
+
`@owlmeans/*` package (in the installed packages and at https://github.com/owlmeans/common) or existing
|
|
22
|
+
code that already solves the problem **before** proposing a third-party library or a custom solution,
|
|
23
|
+
and simplify whatever you do write. This is required for every planning and development task.
|
|
24
|
+
|
|
18
25
|
## Memory & Meta-file Rules
|
|
19
26
|
|
|
20
27
|
All project memory and meta-information lives **inside this project**, never in `~/.copilot/`:
|