@bendyline/gilde 0.1.21 → 0.1.22

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 (47) hide show
  1. package/authoring/chat-models/nemotron3.5-lightning-30b-q4.json +3 -2
  2. package/authoring/chat-models/nemotron3.5-lightning-30b-q8.json +3 -2
  3. package/authoring/page-demo-stub.js +85 -0
  4. package/data/chat-models/index.json +1 -1
  5. package/data/chat-models/ne/nemotron3.5-lightning-30b-q4/manifest.json +3 -2
  6. package/data/chat-models/ne/nemotron3.5-lightning-30b-q8/manifest.json +3 -2
  7. package/data/connector-types/bl/bluesky-posts/manifest.json +16 -0
  8. package/data/connector-types/bl/bluesky-posts/versions/1.0.0/manifest.json +70 -0
  9. package/data/connector-types/gi/github-issues/versions/1.0.1/manifest.json +67 -0
  10. package/data/connector-types/in/instagram-media/manifest.json +17 -0
  11. package/data/connector-types/in/instagram-media/versions/1.0.0/manifest.json +70 -0
  12. package/data/connector-types/index.json +1 -1
  13. package/data/connector-types/x-/x-posts/manifest.json +17 -0
  14. package/data/connector-types/x-/x-posts/versions/1.0.0/manifest.json +66 -0
  15. package/data/craftbook-templates/dr/draft-social-post/manifest.json +23 -0
  16. package/data/craftbook-templates/dr/draft-social-post/versions/1.0.0/craftbook.json +176 -0
  17. package/data/craftbook-templates/dr/draft-social-post/versions/1.0.0/test.json +161 -0
  18. package/data/craftbook-templates/index.json +1 -1
  19. package/data/craftbook-templates/re/reception-report/manifest.json +21 -0
  20. package/data/craftbook-templates/re/reception-report/versions/1.0.0/craftbook.json +170 -0
  21. package/data/craftbook-templates/re/reception-report/versions/1.0.0/test.json +168 -0
  22. package/data/craftbook-templates/so/social-digest/manifest.json +21 -0
  23. package/data/craftbook-templates/so/social-digest/versions/1.0.0/craftbook.json +133 -0
  24. package/data/craftbook-templates/so/social-digest/versions/1.0.0/test.json +168 -0
  25. package/data/gezel-templates/index.json +1 -1
  26. package/data/gezel-templates/om/omroeper/manifest.json +20 -0
  27. package/data/gezel-templates/om/omroeper/versions/1.0.0/about.md +33 -0
  28. package/data/gezel-templates/om/omroeper/versions/1.0.0/manifest.json +23 -0
  29. package/data/project-types/im/image-feed/manifest.json +20 -0
  30. package/data/project-types/im/image-feed/versions/1.0.0/about.md +21 -0
  31. package/data/project-types/im/image-feed/versions/1.0.0/manifest.json +330 -0
  32. package/data/project-types/im/image-feed/versions/1.0.0/mission.md +10 -0
  33. package/data/project-types/im/image-feed/versions/1.0.0/pages/gallery/index.html +831 -0
  34. package/data/project-types/im/image-feed/versions/1.0.0/posts/index.json +4 -0
  35. package/data/project-types/im/image-feed/versions/1.0.0/style-guide.md +24 -0
  36. package/data/project-types/index.json +1 -1
  37. package/data/project-types/so/social-feed/manifest.json +20 -0
  38. package/data/project-types/so/social-feed/versions/1.0.0/about.md +19 -0
  39. package/data/project-types/so/social-feed/versions/1.0.0/manifest.json +330 -0
  40. package/data/project-types/so/social-feed/versions/1.0.0/mission.md +10 -0
  41. package/data/project-types/so/social-feed/versions/1.0.0/pages/dashboard/index.html +754 -0
  42. package/data/project-types/so/social-feed/versions/1.0.0/posts/index.json +4 -0
  43. package/data/project-types/so/social-feed/versions/1.0.0/voice-guide.md +22 -0
  44. package/package.json +1 -1
  45. package/schemas/connector-type-version.schema.json +6 -0
  46. package/schemas/craftbook-test.schema.json +1 -0
  47. package/schemas/project-type-version.schema.json +4 -0
@@ -0,0 +1,4 @@
1
+ {
2
+ "version": 1,
3
+ "posts": []
4
+ }
@@ -0,0 +1,22 @@
1
+ # Voice guide
2
+
3
+ {{voice}}
4
+
5
+ ## How {{brand}} sounds
6
+
7
+ - Short sentences. Concrete nouns. No filler.
8
+ - Warm, not chummy; confident, never salesy.
9
+ - Write like one person talking to one person.
10
+
11
+ ## Per platform
12
+
13
+ - **Bluesky** — conversational and link-friendly; 300 characters.
14
+ - **X** — tighter; 280 characters, and the first line does the work.
15
+ - **Instagram** — the image leads; the caption adds one honest thought.
16
+
17
+ ## Never
18
+
19
+ - Hashtag pile-ups, engagement bait, manufactured urgency.
20
+ - Claims we cannot back, punching down, posting angry.
21
+
22
+ Edit this file freely — the crew treats it as law.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bendyline/gilde",
3
- "version": "0.1.21",
3
+ "version": "0.1.22",
4
4
  "description": "The gilde catalog: model manifests, toolsets, craftbooks, roles, and project types for gezel.",
5
5
  "license": "MIT",
6
6
  "private": false,
@@ -128,6 +128,12 @@
128
128
  "window"
129
129
  ]
130
130
  },
131
+ "allowedOrigins": {
132
+ "type": "array",
133
+ "items": {
134
+ "type": "string"
135
+ }
136
+ },
131
137
  "notes": {
132
138
  "type": "string"
133
139
  }
@@ -4415,6 +4415,7 @@
4415
4415
  "memory.compacted",
4416
4416
  "memory.lessons-updated",
4417
4417
  "project.digest.generated",
4418
+ "project.index.reviewed",
4418
4419
  "meester.status.generated",
4419
4420
  "gezel.level.up",
4420
4421
  "gezel.trait.adopted",
@@ -218,6 +218,10 @@
218
218
  "entry": {
219
219
  "type": "string"
220
220
  },
221
+ "api": {
222
+ "type": "number",
223
+ "const": 1
224
+ },
221
225
  "reads": {
222
226
  "type": "array",
223
227
  "items": {