@lovelybunch/core 1.0.75-alpha.1 → 1.0.75-alpha.11

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/dist/change-proposal.d.ts +0 -3
  2. package/dist/change-proposal.d.ts.map +1 -1
  3. package/dist/change-proposal.js +3 -5
  4. package/dist/change-proposal.js.map +1 -1
  5. package/dist/index.d.ts +3 -1
  6. package/dist/index.d.ts.map +1 -1
  7. package/dist/index.js +3 -1
  8. package/dist/index.js.map +1 -1
  9. package/dist/knowledge.d.ts +120 -120
  10. package/dist/knowledge.js +1 -1
  11. package/dist/knowledge.js.map +1 -1
  12. package/dist/logging/index.d.ts +5 -5
  13. package/dist/logging/index.d.ts.map +1 -1
  14. package/dist/logging/index.js +5 -5
  15. package/dist/logging/index.js.map +1 -1
  16. package/dist/logging/kinds.d.ts +24 -24
  17. package/dist/logging/kinds.d.ts.map +1 -1
  18. package/dist/logging/kinds.js +24 -24
  19. package/dist/logging/kinds.js.map +1 -1
  20. package/dist/markdown-storage.d.ts +12 -11
  21. package/dist/markdown-storage.d.ts.map +1 -1
  22. package/dist/markdown-storage.js +213 -143
  23. package/dist/markdown-storage.js.map +1 -1
  24. package/dist/skill-instructions.d.ts +19 -0
  25. package/dist/skill-instructions.d.ts.map +1 -0
  26. package/dist/skill-instructions.js +165 -0
  27. package/dist/skill-instructions.js.map +1 -0
  28. package/dist/slack.d.ts +102 -0
  29. package/dist/slack.d.ts.map +1 -0
  30. package/dist/slack.js +548 -0
  31. package/dist/slack.js.map +1 -0
  32. package/dist/storage.d.ts +21 -24
  33. package/dist/storage.d.ts.map +1 -1
  34. package/dist/storage.js +155 -181
  35. package/dist/storage.js.map +1 -1
  36. package/dist/system-prompts/coconut-assistant.md +40 -6
  37. package/dist/system-prompts/schema/agent.schema.md +1 -1
  38. package/dist/system-prompts/schema/knowledge.schema.md +2 -2
  39. package/dist/system-prompts/schema/skill.schema.md +73 -0
  40. package/dist/system-prompts/schema/{proposal.schema.md → task.schema.md} +2 -2
  41. package/dist/{proposals.d.ts → tasks.d.ts} +172 -173
  42. package/dist/tasks.d.ts.map +1 -0
  43. package/dist/{proposals.js → tasks.js} +105 -105
  44. package/dist/tasks.js.map +1 -0
  45. package/package.json +3 -2
  46. package/dist/proposals.d.ts.map +0 -1
  47. package/dist/proposals.js.map +0 -1
@@ -0,0 +1,73 @@
1
+ ---
2
+ name: design-quality-specialist
3
+ description: |
4
+ Example skill profile that reviews UI changes for adherence to brand and accessibility guidelines.
5
+ license: MIT
6
+ compatibility: claude gemini codex
7
+ allowed-tools: Read Write MultiEdit Bash Git
8
+ metadata:
9
+ color: teal
10
+ version: '1.0.0'
11
+ focusAreas:
12
+ - Flag unintended visual regressions before release.
13
+ - Coach contributors on meeting accessibility targets.
14
+ contextPreferences:
15
+ - .nut/context/project.md
16
+ - .nut/.schema/task.schema.md
17
+ createdAt: '2025-09-20T15:00:00.000Z'
18
+ updatedAt: '2025-09-21T09:00:00.000Z'
19
+ ---
20
+ # Skill Schema Example (Agent Skills Spec)
21
+
22
+ This file follows the Agent Skills specification (https://agentskills.io/specification).
23
+ Skills are stored as `.nut/skills/<name>/SKILL.md` with YAML frontmatter.
24
+
25
+ ## Directory Structure
26
+
27
+ ```
28
+ .nut/skills/<skill-name>/
29
+ SKILL.md # Required: skill definition with frontmatter
30
+ scripts/ # Optional: helper scripts
31
+ references/ # Optional: reference documents
32
+ assets/ # Optional: images, data files, etc.
33
+ *.md # Optional: companion markdown guides referenced by SKILL.md
34
+ ```
35
+
36
+ Skills may include companion files alongside `SKILL.md`. These are typically
37
+ helper scripts, reference documents, or additional markdown guides that the
38
+ skill's instructions reference via relative links (e.g., `[editing.md](editing.md)`).
39
+
40
+ When a skill is imported from the registry and includes an archive (zip bundle),
41
+ the archive contents are extracted into the skill directory so that all companion
42
+ files are available locally.
43
+
44
+ ## Frontmatter Fields
45
+
46
+ - **name** (required): Kebab-case identifier matching the directory name
47
+ - **description** (required): What this skill does and when to use it
48
+ - **license** (optional): License identifier (e.g., MIT, Apache-2.0)
49
+ - **compatibility** (optional): Space-delimited list of compatible environments
50
+ - **allowed-tools** (optional): Space-delimited list of pre-approved tools
51
+ - **metadata** (optional): Map of custom key-value pairs for Coconut-specific fields
52
+
53
+ ## Registry Archive Support
54
+
55
+ Skills distributed through the Coconut Registry may include an `archive` field
56
+ in their registry metadata pointing to a `.zip` file. When present, the import
57
+ flow downloads and extracts the archive into the skill directory, providing the
58
+ complete skill including SKILL.md and any companion files (scripts, guides, etc.).
59
+
60
+ If the archive does not contain a `SKILL.md`, one is generated from the registry
61
+ metadata as a fallback.
62
+
63
+ ## Responsibilities
64
+
65
+ Explain the situations where this skill should be invoked and how it collaborates with humans.
66
+
67
+ ## Playbooks
68
+
69
+ Outline repeatable steps the skill should follow when executing its responsibilities.
70
+
71
+ ## Escalation
72
+
73
+ Clarify when the skill should raise issues or hand back to a human teammate.
@@ -163,9 +163,9 @@ aiInteractions:
163
163
  completion: 260
164
164
  total: 1080
165
165
  ---
166
- # Proposal Schema Example
166
+ # Task Schema Example
167
167
 
168
- This file demonstrates the full front matter and content structure Coconut expects for change proposals.
168
+ This file demonstrates the full front matter and content structure Coconut expects for change tasks.
169
169
  - Keep arrays populated with meaningful objects, not empty lists.
170
170
  - Update timestamps using ISO 8601 format.
171
171
  - Maintain sections below the front matter for narrative context and status updates.