@rubytech/create-maxy-code 0.1.442 → 0.1.443
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/dist/__tests__/converge-client-admins.test.js +50 -0
- package/dist/converge-client-admins.js +67 -0
- package/dist/index.js +8 -0
- package/package.json +1 -1
- package/payload/platform/docs/superpowers/plans/2026-07-13-account-schema-ontology-projection.md +547 -0
- package/payload/platform/docs/superpowers/plans/2026-07-14-graph-top-level-labels-ontology-single-source.md +458 -0
- package/payload/platform/docs/superpowers/specs/2026-07-13-account-schema-ontology-projection-design.md +178 -0
- package/payload/platform/docs/superpowers/specs/2026-07-14-graph-top-level-labels-ontology-single-source-design.md +119 -0
- package/payload/platform/plugins/admin/.claude-plugin/plugin.json +1 -1
- package/payload/platform/plugins/admin/PLUGIN.md +7 -1
- package/payload/platform/plugins/admin/hooks/__tests__/fs-schema-guard.test.sh +19 -2
- package/payload/platform/plugins/admin/mcp/dist/index.js +126 -1
- package/payload/platform/plugins/admin/mcp/dist/index.js.map +1 -1
- package/payload/platform/plugins/admin/mcp/dist/tools/account-lifecycle.d.ts +30 -0
- package/payload/platform/plugins/admin/mcp/dist/tools/account-lifecycle.d.ts.map +1 -1
- package/payload/platform/plugins/admin/mcp/dist/tools/account-lifecycle.js +78 -0
- package/payload/platform/plugins/admin/mcp/dist/tools/account-lifecycle.js.map +1 -1
- package/payload/platform/plugins/admin/skills/platform-architecture/SKILL.md +2 -2
- package/payload/platform/plugins/docs/references/admin-ui.md +1 -1
- package/payload/platform/plugins/memory/PLUGIN.md +2 -0
- package/payload/platform/plugins/memory/mcp/dist/lib/__tests__/resolve-active-vertical.test.js +12 -0
- package/payload/platform/plugins/memory/mcp/dist/lib/__tests__/resolve-active-vertical.test.js.map +1 -1
- package/payload/platform/plugins/memory/mcp/dist/lib/resolve-active-vertical.d.ts +9 -1
- package/payload/platform/plugins/memory/mcp/dist/lib/resolve-active-vertical.d.ts.map +1 -1
- package/payload/platform/plugins/memory/mcp/dist/lib/resolve-active-vertical.js +19 -2
- package/payload/platform/plugins/memory/mcp/dist/lib/resolve-active-vertical.js.map +1 -1
- package/payload/platform/plugins/memory/references/schema-estate-agent.md +8 -3
- package/payload/platform/scripts/__tests__/account-schema-owned-dirs.test.sh +58 -0
- package/payload/platform/scripts/__tests__/provision-role-stamp.test.sh +6 -0
- package/payload/platform/scripts/lib/account-schema-owned-dirs.py +143 -10
- package/payload/platform/scripts/lib/provision-account-dir.sh +5 -0
- package/payload/platform/scripts/name-glsmith-owner.sh +239 -0
- package/payload/platform/services/claude-session-manager/dist/canonical-tool-names.generated.d.ts.map +1 -1
- package/payload/platform/services/claude-session-manager/dist/canonical-tool-names.generated.js +2 -0
- package/payload/platform/services/claude-session-manager/dist/canonical-tool-names.generated.js.map +1 -1
- package/payload/server/server.js +341 -169
- package/payload/platform/plugins/memory/references/schema-trades.md +0 -34
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
# Schema Reference — Trades
|
|
2
|
-
|
|
3
|
-
Vertical schema for `businessType: "trades"` — home services and tradespeople (plumber,
|
|
4
|
-
electrician, builder, decorator). Trades and construction share the **one canonical SiteDesk
|
|
5
|
-
service-delivery ontology** authored from JobLogic (see `schema-construction.md` for the full
|
|
6
|
-
label set, properties, idempotency keys, relationships, and the filesystem↔graph template).
|
|
7
|
-
There are no trades-specific labels that diverge from the canonical model.
|
|
8
|
-
|
|
9
|
-
This reference extends the base schema. All base node types (Person, Organization, Order, Event,
|
|
10
|
-
Invoice, Service, etc.) remain valid. Load `schema-base.md` first.
|
|
11
|
-
|
|
12
|
-
When loading this reference, confirm: "Using schema-base + schema-trades".
|
|
13
|
-
|
|
14
|
-
---
|
|
15
|
-
|
|
16
|
-
## Canonical labels for the trades case
|
|
17
|
-
|
|
18
|
-
A tradesperson's work maps onto the same canonical labels as a contractor's:
|
|
19
|
-
|
|
20
|
-
| Trades concept | Canonical label | Notes |
|
|
21
|
-
|----------------|-----------------|-------|
|
|
22
|
-
| The job / call-out | Job | `jobType` distinguishes Call out / Installation / Maintenance / Reactive |
|
|
23
|
-
| Customer and the work address | Customer, Site | site is the work location, distinct from the customer |
|
|
24
|
-
| An attendance / site visit | Visit | the lifecycle attendance record on a job (was the homegrown SiteVisit) |
|
|
25
|
-
| The estimate / quote | Quote, QuoteLine | priced estimate and its lines |
|
|
26
|
-
| Parts and materials used | Part, JobCost (costType material) | catalogue part vs the incurred material cost on a job |
|
|
27
|
-
| Serviced equipment on site | Asset | boiler, AC unit, alarm panel, etc. |
|
|
28
|
-
| A planned-maintenance agreement | PpmContract | recurring service contract, distinct from a reactive Job |
|
|
29
|
-
|
|
30
|
-
Trade certifications (Gas Safe, NICEIC, Part P) a person holds are recorded as a credential on
|
|
31
|
-
that person's `:Person` node via the base credential model, not as a separate construction label.
|
|
32
|
-
Inspection findings are recorded as notes/documents on the `:Visit` or `:Asset` they concern.
|
|
33
|
-
|
|
34
|
-
See `schema-construction.md` for the authoritative definition of every label above.
|