@lovelybunch/core 1.0.75-alpha.1 → 1.0.75-alpha.10
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/agent-instructions.d.ts +17 -0
- package/dist/agent-instructions.d.ts.map +1 -0
- package/dist/agent-instructions.js +160 -0
- package/dist/agent-instructions.js.map +1 -0
- package/dist/context.d.ts +8 -8
- package/dist/index.d.ts +2 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/knowledge.d.ts +40 -40
- package/dist/knowledge.js +1 -1
- package/dist/knowledge.js.map +1 -1
- package/dist/logging/index.d.ts +5 -5
- package/dist/logging/index.d.ts.map +1 -1
- package/dist/logging/index.js +5 -5
- package/dist/logging/index.js.map +1 -1
- package/dist/logging/kinds.d.ts +24 -24
- package/dist/logging/kinds.d.ts.map +1 -1
- package/dist/logging/kinds.js +24 -24
- package/dist/logging/kinds.js.map +1 -1
- package/dist/markdown-storage.d.ts +12 -11
- package/dist/markdown-storage.d.ts.map +1 -1
- package/dist/markdown-storage.js +213 -143
- package/dist/markdown-storage.js.map +1 -1
- package/dist/proposals.d.ts +136 -136
- package/dist/skill-instructions.d.ts +19 -0
- package/dist/skill-instructions.d.ts.map +1 -0
- package/dist/skill-instructions.js +165 -0
- package/dist/skill-instructions.js.map +1 -0
- package/dist/storage.d.ts +21 -24
- package/dist/storage.d.ts.map +1 -1
- package/dist/storage.js +155 -181
- package/dist/storage.js.map +1 -1
- package/dist/system-prompts/coconut-assistant.md +40 -6
- package/dist/system-prompts/schema/agent.schema.md +1 -1
- package/dist/system-prompts/schema/knowledge.schema.md +2 -2
- package/dist/system-prompts/schema/skill.schema.md +73 -0
- package/dist/system-prompts/schema/{proposal.schema.md → task.schema.md} +2 -2
- package/dist/tasks.d.ts +764 -0
- package/dist/tasks.d.ts.map +1 -0
- package/dist/tasks.js +483 -0
- package/dist/tasks.js.map +1 -0
- package/package.json +2 -2
|
@@ -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
|
-
#
|
|
166
|
+
# Task Schema Example
|
|
167
167
|
|
|
168
|
-
This file demonstrates the full front matter and content structure Coconut expects for change
|
|
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.
|