@lovelybunch/core 1.0.55 → 1.0.56
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.
|
@@ -11,11 +11,7 @@ stack:
|
|
|
11
11
|
language: typescript
|
|
12
12
|
database: postgres
|
|
13
13
|
deployment: vercel
|
|
14
|
-
|
|
15
|
-
file_naming: kebab-case
|
|
16
|
-
code_style: eslint + prettier
|
|
17
|
-
branch_strategy: trunk-based
|
|
18
|
-
commit_format: conventional-commits
|
|
14
|
+
repository: https://github.com/lovelybunch/coconut
|
|
19
15
|
commands:
|
|
20
16
|
install: pnpm install
|
|
21
17
|
dev: pnpm dev
|
|
@@ -52,3 +48,10 @@ Document how information moves between services, including ingress, processing,
|
|
|
52
48
|
## Operational Notes
|
|
53
49
|
|
|
54
50
|
Track deployment strategy, scaling thresholds, and recovery procedures.
|
|
51
|
+
|
|
52
|
+
## Development Conventions
|
|
53
|
+
|
|
54
|
+
- **File Naming:** kebab-case for files, camelCase for variables.
|
|
55
|
+
- **Code Style:** ESLint + Prettier enforced via CI.
|
|
56
|
+
- **Branch Strategy:** Trunk-based with short-lived feature branches.
|
|
57
|
+
- **Commit Format:** Conventional Commits (`feat:`, `fix:`, etc.).
|
|
@@ -10,7 +10,7 @@ tags:
|
|
|
10
10
|
project:
|
|
11
11
|
name: Coconut Palm Refresh
|
|
12
12
|
description: Align shared branding assets with the neutral palette across all surfaces.
|
|
13
|
-
|
|
13
|
+
website: https://coconut.dev
|
|
14
14
|
version: '2.3.0'
|
|
15
15
|
stage: production
|
|
16
16
|
owners:
|
|
@@ -20,18 +20,6 @@ owners:
|
|
|
20
20
|
engineering:
|
|
21
21
|
name: Coconut AI
|
|
22
22
|
email: coconut.ai@lovelybunch.com
|
|
23
|
-
goals:
|
|
24
|
-
primary: Deliver a cohesive neutral brand experience without regressions.
|
|
25
|
-
metrics:
|
|
26
|
-
- metric: nps_trust
|
|
27
|
-
target: 0.08
|
|
28
|
-
description: Increase customer trust score by 8%.
|
|
29
|
-
- metric: theme_override_count
|
|
30
|
-
target: 0.5
|
|
31
|
-
description: Reduce ad-hoc color overrides by 50%.
|
|
32
|
-
non_goals:
|
|
33
|
-
- Rebranding typography system.
|
|
34
|
-
- Revisiting logo layout or spacing.
|
|
35
23
|
roadmap:
|
|
36
24
|
milestones:
|
|
37
25
|
- name: Palette audit complete
|
|
@@ -70,6 +58,14 @@ Summarize the mission, scope boundaries, and target customers.
|
|
|
70
58
|
|
|
71
59
|
Highlight what is complete, in progress, blocked, and upcoming.
|
|
72
60
|
|
|
61
|
+
## Goals & Success Metrics
|
|
62
|
+
|
|
63
|
+
Document the primary project ambition, the key metrics used to assess success, and any explicit non-goals in markdown. For example:
|
|
64
|
+
|
|
65
|
+
- **Primary Goal:** Introduce automated moderation to reduce manual review load.
|
|
66
|
+
- **Success Metrics:** Time-to-triage under 5 minutes, 95% precision on high-risk flags.
|
|
67
|
+
- **Non-Goals:** Real-time interventions, policy redesign.
|
|
68
|
+
|
|
73
69
|
## Resources
|
|
74
70
|
|
|
75
71
|
List repositories, docs, dashboards, and any external references the team relies on.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lovelybunch/core",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.56",
|
|
4
4
|
"description": "Core Coconut functionality",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"test": "vitest run"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@lovelybunch/types": "^1.0.
|
|
34
|
+
"@lovelybunch/types": "^1.0.56",
|
|
35
35
|
"gray-matter": "^4.0.3",
|
|
36
36
|
"fuse.js": "^7.0.0",
|
|
37
37
|
"nanoid": "^5.0.6"
|