eidosmd 0.1.0 → 0.3.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.
Files changed (107) hide show
  1. package/README.md +50 -29
  2. package/browser/dist/assets/index-Cc3cNWHY.css +1 -0
  3. package/browser/dist/assets/index-DQgCQRa5.js +46 -0
  4. package/browser/dist/favicon.svg +5 -0
  5. package/browser/dist/index.html +15 -0
  6. package/browser/dist/mark.svg +4 -0
  7. package/dist/src/cli.js +7 -0
  8. package/dist/src/commands/agents.js +1 -1
  9. package/dist/src/commands/canvas.js +77 -0
  10. package/dist/src/commands/check.js +10 -4
  11. package/dist/src/commands/configure.js +201 -0
  12. package/dist/src/commands/framework.js +37 -7
  13. package/dist/src/commands/index.js +4 -4
  14. package/dist/src/commands/init.js +5 -0
  15. package/dist/src/commands/instructions.js +1 -1
  16. package/dist/src/commands/list.js +8 -8
  17. package/dist/src/commands/migrate.js +32 -0
  18. package/dist/src/commands/new.js +3 -3
  19. package/dist/src/commands/property.js +125 -0
  20. package/dist/src/commands/seeds.js +5 -5
  21. package/dist/src/commands/setup.js +131 -0
  22. package/dist/src/commands/version.js +44 -0
  23. package/dist/src/commands/whoami.js +4 -4
  24. package/dist/src/context.js +5 -5
  25. package/dist/src/core/blueprint.js +16 -11
  26. package/dist/src/core/canvas-schema.js +148 -0
  27. package/dist/src/core/canvas.js +732 -0
  28. package/dist/src/core/check.js +221 -70
  29. package/dist/src/core/convert.js +7 -6
  30. package/dist/src/core/edits.js +1381 -0
  31. package/dist/src/core/framework-markdown.js +119 -34
  32. package/dist/src/core/framework-model.js +62 -10
  33. package/dist/src/core/framework-structured.js +222 -47
  34. package/dist/src/core/framework.js +13 -13
  35. package/dist/src/core/frontmatter.js +61 -1
  36. package/dist/src/core/git.js +84 -0
  37. package/dist/src/core/index-leaf.js +2 -2
  38. package/dist/src/core/links.js +87 -0
  39. package/dist/src/core/markdown.js +16 -9
  40. package/dist/src/core/me.js +16 -8
  41. package/dist/src/core/migrate.js +319 -0
  42. package/dist/src/core/naming.js +1 -1
  43. package/dist/src/core/regions.js +117 -0
  44. package/dist/src/core/root.js +2 -2
  45. package/dist/src/core/scaffold.js +33 -27
  46. package/dist/src/core/seed.js +187 -71
  47. package/dist/src/core/server.js +1410 -53
  48. package/dist/src/core/settings.js +232 -0
  49. package/dist/src/core/store.js +315 -0
  50. package/dist/src/core/template.js +32 -0
  51. package/dist/src/core/versions.js +84 -0
  52. package/dist/src/output.js +4 -1
  53. package/dist/src/program.js +421 -41
  54. package/instructions/authoring.md +15 -12
  55. package/instructions/configuring.md +81 -34
  56. package/instructions/init-required.md +4 -4
  57. package/instructions/overview.md +21 -9
  58. package/instructions/validating.md +9 -6
  59. package/package.json +21 -12
  60. package/standard/EIDOS.md +142 -259
  61. package/standard/seeds/README.md +12 -16
  62. package/standard/seeds/book/Framework.yaml +61 -0
  63. package/standard/seeds/book/README.md +10 -5
  64. package/standard/seeds/book/_gitignore +9 -3
  65. package/standard/seeds/book/me.md +1 -1
  66. package/standard/seeds/book/roles/README.md +3 -3
  67. package/standard/seeds/book/roles/framework-owner.md +2 -2
  68. package/standard/seeds/book/{shapes → templates}/chapter.full.md +0 -8
  69. package/standard/seeds/book/{shapes → templates}/chapter.sketch.md +0 -7
  70. package/standard/seeds/book/{shapes → templates}/frame.market.md +0 -6
  71. package/standard/seeds/book/templates/frame.premise.md +17 -0
  72. package/standard/seeds/book/{shapes → templates}/frame.reader.md +0 -6
  73. package/standard/seeds/book/{shapes → templates}/frame.voice.md +0 -7
  74. package/standard/seeds/research/Framework.yaml +61 -0
  75. package/standard/seeds/research/README.md +10 -5
  76. package/standard/seeds/research/_gitignore +9 -3
  77. package/standard/seeds/research/me.md +1 -1
  78. package/standard/seeds/research/roles/README.md +3 -3
  79. package/standard/seeds/research/roles/framework-owner.md +2 -2
  80. package/standard/seeds/research/{shapes → templates}/frame.ethics.md +0 -6
  81. package/standard/seeds/research/{shapes → templates}/frame.method.md +0 -7
  82. package/standard/seeds/research/{shapes → templates}/frame.prior-work.md +0 -6
  83. package/standard/seeds/research/{shapes → templates}/frame.question.md +0 -7
  84. package/standard/seeds/research/{shapes → templates}/investigation.full.md +0 -8
  85. package/standard/seeds/research/{shapes → templates}/investigation.note.md +0 -7
  86. package/standard/seeds/software/Framework.yaml +62 -0
  87. package/standard/seeds/software/README.md +7 -6
  88. package/standard/seeds/software/_gitignore +9 -3
  89. package/standard/seeds/software/me.md +1 -1
  90. package/standard/seeds/software/roles/README.md +3 -3
  91. package/standard/seeds/software/roles/framework-owner.md +2 -2
  92. package/standard/seeds/software/roles/project-manager.md +2 -2
  93. package/standard/seeds/software/roles/stakeholder.md +1 -1
  94. package/standard/seeds/software/{shapes → templates}/frame.architecture.md +0 -7
  95. package/standard/seeds/software/{shapes → templates}/frame.audience.md +1 -8
  96. package/standard/seeds/software/{shapes → templates}/frame.criteria.md +0 -8
  97. package/standard/seeds/software/{shapes → templates}/frame.market.md +0 -8
  98. package/standard/seeds/software/{shapes → templates}/spec.full.md +0 -8
  99. package/standard/seeds/software/{shapes → templates}/spec.micro.md +0 -9
  100. package/browser/index.html +0 -268
  101. package/dist/src/commands/convert.js +0 -30
  102. package/dist/src/core/shape.js +0 -26
  103. package/standard/seeds/book/Framework.md +0 -87
  104. package/standard/seeds/book/shapes/frame.premise.md +0 -24
  105. package/standard/seeds/research/Framework.md +0 -88
  106. package/standard/seeds/software/Framework.md +0 -88
  107. /package/standard/seeds/software/{shapes → templates}/.gitkeep +0 -0
@@ -1,88 +0,0 @@
1
- ---
2
- # The Eidos version this framework targets; migrate reads and bumps it.
3
- eidos_version: 4.5.0
4
- # How files, folders, and links are named: kebab-case | TitleCase | Title Case. Absent = kebab-case.
5
- naming: kebab-case
6
- ---
7
-
8
- # Framework
9
-
10
- The framework's index and config, in one place: the version and naming convention above, and below the
11
- Top-Level documents, the Collections (with their flavors and grouping), and the property Schema. The
12
- visible `README.md` at the root is the friendly door to it; keep it current with the
13
- `configure` skill.
14
-
15
- ## Top-Level
16
-
17
- <!-- configure: top-level index (regenerated) -->
18
- - [README](../README.md) — the root's front door: what this is, and pointers in.
19
- <!-- One bullet per top-level document. README is the door and comes first; add your own below (a
20
- Roadmap, a Vision, the generated Blueprint Map canvas), each a link and a one-line description.
21
- The framing docs live in the Frames collection, not here. configure refreshes this list. -->
22
-
23
- ## Collections
24
-
25
- A collection is a top-level folder of repeated blueprints that share a body shape. `Frames` holds the
26
- framing docs — the most primary thing the folder says about itself — and `Specs` the product's
27
- units. Add more with `configure`. Each lists its flavors (the default marked) and its grouping,
28
- and points at its generated `index.md` leaf.
29
-
30
- ### Frames
31
-
32
- The framing docs that set what every other blueprint is judged against — the product's architecture,
33
- audience, criteria, and market. This framework's framing collection; each frame follows the flavor of
34
- its kind, and one left unwritten is a gap to surface, not a failure.
35
-
36
- - **Leaf:** [Frames/index.md](../Frames/index.md)
37
- - **Flavors:**
38
- - [architecture](shapes/frame.architecture.md) — the product as a built system (default).
39
- - [audience](shapes/frame.audience.md) — who it serves, and how each kind differs.
40
- - [criteria](shapes/frame.criteria.md) — budget, scope objectives, timeline.
41
- - [market](shapes/frame.market.md) — landscape, positioning, and how it earns.
42
- - **Canvas:** file
43
-
44
- ### Specs
45
-
46
- The product's units, one per blueprint, grouped by domain.
47
-
48
- - **Leaf:** [Specs/index.md](../Specs/index.md)
49
- - **Flavors:**
50
- - [full](shapes/spec.full.md) — the complete spec shape (default).
51
- - [micro](shapes/spec.micro.md) — Intent, Open Questions, ACs, Out of Scope; grow into full.
52
- - **Canvas:** card from `## Intent`
53
- - **Domains:** _(add one bullet per domain — a name and a short description — as domains accrue)_
54
-
55
- ## Schema
56
-
57
- The property contract — what a blueprint's frontmatter may carry, across every collection. Two parts: the
58
- **core** properties Eidos's own machinery uses, and the **custom** ones you (or the seed) add. Every
59
- custom property declares which collections it **applies to** — `all`, or a list — so a property never
60
- lands where it makes no sense (`domain` is Specs-only). A property's type comes from the Obsidian set
61
- (Text, List, Number, Checkbox, Date, Date & time), so frontmatter renders natively in an Obsidian
62
- vault. The `configure` skill edits this section.
63
-
64
- ### Eidos Core
65
-
66
- _Present on every blueprint. Managed by the standard (Eidos 4.5.0); `migrate` rewrites this block on a version change — don't hand-edit it. (`flavor` absent = the collection's default; `connects_to` absent = no canvas edges; a missing `summary` is flagged by the index.)_
67
-
68
- | Name | Type | Meaning |
69
- | ----------- | ---- | ---------------------------------------------------------------------------------------------- |
70
- | id | Text | Stable, unique, kebab-case identity. Assigned once, never renamed. References point at it. |
71
- | title | Text | Human-readable name. |
72
- | summary | Text | One plain line — what this blueprint is, in a sentence, distilled from Intent. Source for the collection index.md listing; absent, the index flags it. |
73
- | flavor | Text | Which body flavor this blueprint follows, from its collection's declared flavors. Absent = the collection's default flavor. |
74
- | connects_to | List | Blueprints this one connects to on the canvas, each a markdown link; drawn as a directed edge (this → target). The intentional map, distinct from depends_on. |
75
-
76
- ### Custom Properties
77
-
78
- _Yours to shape with the `configure` skill. The seed ships a few useful defaults below — keep, scope, or drop any of them; Eidos doesn't depend on them. Absence where a property applies is a soft gap the validator notes, never refuses._
79
-
80
- | Name | Type | Applies To | Meaning |
81
- | ------------- | ---- | ---------- | ------------------------------------------------------------------------------------------ |
82
- | status | Text | all | Lifecycle value: Draft / Intake / In Progress / Done / Archived / Deprecated. An off-list value warns. |
83
- | date_created | Date | all | YYYY-MM-DD. The day the blueprint was first written. Set once. |
84
- | date_modified | Date | all | YYYY-MM-DD. The day the blueprint was last changed. |
85
- | tags | List | all | Free tags. |
86
- | domain | Text | Specs | The grouping, matching the blueprint's sub-folder under its collection in the naming convention. An unknown value warns, never fails. |
87
- | depends_on | List | Specs | Blueprints this one needs, each a markdown link. An implementation dependency, not a canvas edge. |
88
- | type | Text | Specs | Open, soft category label — drives views and filtering, never structure. e.g. feature, capability, integration. |