@praxis-framework/seed 0.1.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/README.md +47 -0
- package/dist/catalog.d.ts +60 -0
- package/dist/catalog.d.ts.map +1 -0
- package/dist/catalog.js +239 -0
- package/dist/catalog.js.map +1 -0
- package/dist/index.d.ts +16 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +14 -0
- package/dist/index.js.map +1 -0
- package/dist/seed.d.ts +43 -0
- package/dist/seed.d.ts.map +1 -0
- package/dist/seed.js +508 -0
- package/dist/seed.js.map +1 -0
- package/dist/template.d.ts +16 -0
- package/dist/template.d.ts.map +1 -0
- package/dist/template.js +47 -0
- package/dist/template.js.map +1 -0
- package/dist/traits.d.ts +26 -0
- package/dist/traits.d.ts.map +1 -0
- package/dist/traits.js +43 -0
- package/dist/traits.js.map +1 -0
- package/dist/types.d.ts +288 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +87 -0
- package/dist/types.js.map +1 -0
- package/package.json +55 -0
- package/template/.env.example +8 -0
- package/template/CLAUDE.md +151 -0
- package/template/_gitignore +20 -0
- package/template/docker-compose.yml +44 -0
- package/template/escalations/README.md +51 -0
- package/template/lib/.gitkeep +0 -0
- package/template/lib/autonomy.yaml +158 -0
- package/template/lib/output-schemas.yaml +88 -0
- package/template/lib/tools.yaml +70 -0
- package/template/memory/README.md +51 -0
- package/template/memory/accounts/.gitkeep +0 -0
- package/template/memory/notes/.gitkeep +0 -0
- package/template/memory/people/.gitkeep +0 -0
- package/template/persona.md +75 -0
- package/template/verbs/escalate.md +112 -0
- package/template/verbs/proposed/README.md +25 -0
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# Proposed skills
|
|
2
|
+
|
|
3
|
+
Drafts of new or revised verb prompts that I've written but haven't been accepted into `../` yet. Each draft is the same shape as a regular verb.
|
|
4
|
+
|
|
5
|
+
The accompanying escalation file in `../../escalations/` describes *why* I'm proposing it. This directory holds the *draft itself*.
|
|
6
|
+
|
|
7
|
+
## Lifecycle
|
|
8
|
+
|
|
9
|
+
- I write the draft here.
|
|
10
|
+
- I create an `escalations/` file with `kind: proposed_skill` referencing the draft path.
|
|
11
|
+
- My operator reviews on the dashboard or in session.
|
|
12
|
+
- If accepted, the operator moves the file to `../` and updates the escalation `status` to `accepted`.
|
|
13
|
+
- If declined, the draft stays here as a record. Don't delete declined drafts.
|
|
14
|
+
|
|
15
|
+
## What makes a good proposal
|
|
16
|
+
|
|
17
|
+
- It addresses a friction or gap I've actually hit, not a hypothetical one.
|
|
18
|
+
- It doesn't duplicate something that already exists in `../` — first check whether the existing verb could be extended (in which case file an `improvement` escalation, not a `proposed_skill`).
|
|
19
|
+
- It respects existing hard rules from `../../persona.md`.
|
|
20
|
+
- It's runnable — a person could open the file and execute the playbook end-to-end.
|
|
21
|
+
|
|
22
|
+
## What this isn't
|
|
23
|
+
|
|
24
|
+
- Not a place for *changes to existing verbs* — those are `improvement` escalations
|
|
25
|
+
- Not exploratory notes — those go in `memory/notes/`
|