bun-sticky 1.0.4 → 1.0.5
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/README.md +7 -120
- package/index.js +8 -0
- package/package.json +7 -27
- package/.claude/commands/score.md +0 -12
- package/.claude/commands/test.md +0 -15
- package/.github/FUNDING.yml +0 -5
- package/.github/workflows/ci.yml +0 -26
- package/.github/workflows/release.yml +0 -36
- package/CLAUDE.md +0 -98
- package/LICENSE +0 -21
- package/PRODUCT-SHEET.md +0 -124
- package/PUBLISH-PROTOCOL.md +0 -64
- package/index.ts +0 -349
- package/lib/parser.ts +0 -75
- package/lib/scorer.ts +0 -237
- package/lib/tier.ts +0 -46
- package/project.faf +0 -23
- package/tests/__snapshots__/sticky.test.ts.snap +0 -114
- package/tests/sticky.test.ts +0 -1321
- package/tests/wjttc.test.ts +0 -966
package/project.faf
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
# Bun Sticky - Project DNA
|
|
2
|
-
# Fastest bun under the sum
|
|
3
|
-
|
|
4
|
-
faf_version: 2.5.0
|
|
5
|
-
|
|
6
|
-
project:
|
|
7
|
-
name: bun-sticky
|
|
8
|
-
goal: Bun-native FAF scoring CLI with wolfejam slot-based system
|
|
9
|
-
main_language: TypeScript
|
|
10
|
-
type: cli
|
|
11
|
-
version: 1.0.4
|
|
12
|
-
|
|
13
|
-
human_context:
|
|
14
|
-
who: Developers using Bun for fast TypeScript CLIs
|
|
15
|
-
what: FAF scoring tool that rates project AI-readiness using slot-based scoring
|
|
16
|
-
why: Speed matters - 10x faster than Node, zero dependencies
|
|
17
|
-
where: Terminal, CI/CD pipelines, development workflows
|
|
18
|
-
when: Before commits, during reviews, in automation
|
|
19
|
-
how: bunx bun-sticky score
|
|
20
|
-
|
|
21
|
-
stack:
|
|
22
|
-
runtime: Bun
|
|
23
|
-
build: none (TypeScript native)
|
|
@@ -1,114 +0,0 @@
|
|
|
1
|
-
// Bun Snapshot v1, https://bun.sh/docs/test/snapshots
|
|
2
|
-
|
|
3
|
-
exports[`Tier 2: Scoring Engine T2.07 - SLOTS structure snapshot 1`] = `
|
|
4
|
-
{
|
|
5
|
-
"backend": [
|
|
6
|
-
"stack.backend",
|
|
7
|
-
"stack.api_type",
|
|
8
|
-
"stack.runtime",
|
|
9
|
-
"stack.database",
|
|
10
|
-
"stack.connection",
|
|
11
|
-
],
|
|
12
|
-
"frontend": [
|
|
13
|
-
"stack.frontend",
|
|
14
|
-
"stack.css_framework",
|
|
15
|
-
"stack.ui_library",
|
|
16
|
-
"stack.state_management",
|
|
17
|
-
],
|
|
18
|
-
"human": [
|
|
19
|
-
"human_context.who",
|
|
20
|
-
"human_context.what",
|
|
21
|
-
"human_context.why",
|
|
22
|
-
"human_context.where",
|
|
23
|
-
"human_context.when",
|
|
24
|
-
"human_context.how",
|
|
25
|
-
],
|
|
26
|
-
"project": [
|
|
27
|
-
"project.name",
|
|
28
|
-
"project.goal",
|
|
29
|
-
"project.main_language",
|
|
30
|
-
],
|
|
31
|
-
"universal": [
|
|
32
|
-
"stack.hosting",
|
|
33
|
-
"stack.build",
|
|
34
|
-
"stack.cicd",
|
|
35
|
-
],
|
|
36
|
-
}
|
|
37
|
-
`;
|
|
38
|
-
|
|
39
|
-
exports[`Tier 2: Scoring Engine T2.14 - Full CLI result snapshot 1`] = `
|
|
40
|
-
{
|
|
41
|
-
"filled": 9,
|
|
42
|
-
"missing": [],
|
|
43
|
-
"projectType": "cli",
|
|
44
|
-
"score": 100,
|
|
45
|
-
"sections": {
|
|
46
|
-
"backend": {
|
|
47
|
-
"filled": 0,
|
|
48
|
-
"percentage": 0,
|
|
49
|
-
"total": 0,
|
|
50
|
-
},
|
|
51
|
-
"frontend": {
|
|
52
|
-
"filled": 0,
|
|
53
|
-
"percentage": 0,
|
|
54
|
-
"total": 0,
|
|
55
|
-
},
|
|
56
|
-
"human": {
|
|
57
|
-
"filled": 6,
|
|
58
|
-
"percentage": 100,
|
|
59
|
-
"total": 6,
|
|
60
|
-
},
|
|
61
|
-
"project": {
|
|
62
|
-
"filled": 3,
|
|
63
|
-
"percentage": 100,
|
|
64
|
-
"total": 3,
|
|
65
|
-
},
|
|
66
|
-
"universal": {
|
|
67
|
-
"filled": 0,
|
|
68
|
-
"percentage": 0,
|
|
69
|
-
"total": 0,
|
|
70
|
-
},
|
|
71
|
-
},
|
|
72
|
-
"total": 9,
|
|
73
|
-
}
|
|
74
|
-
`;
|
|
75
|
-
|
|
76
|
-
exports[`Tier 2: Scoring Engine T2.15 - TYPE_CATEGORIES snapshot 1`] = `
|
|
77
|
-
{
|
|
78
|
-
"api": [
|
|
79
|
-
"project",
|
|
80
|
-
"backend",
|
|
81
|
-
"universal",
|
|
82
|
-
"human",
|
|
83
|
-
],
|
|
84
|
-
"cli": [
|
|
85
|
-
"project",
|
|
86
|
-
"human",
|
|
87
|
-
],
|
|
88
|
-
"fullstack": [
|
|
89
|
-
"project",
|
|
90
|
-
"frontend",
|
|
91
|
-
"backend",
|
|
92
|
-
"universal",
|
|
93
|
-
"human",
|
|
94
|
-
],
|
|
95
|
-
"library": [
|
|
96
|
-
"project",
|
|
97
|
-
"human",
|
|
98
|
-
],
|
|
99
|
-
"mobile": [
|
|
100
|
-
"project",
|
|
101
|
-
"human",
|
|
102
|
-
],
|
|
103
|
-
"unknown": [
|
|
104
|
-
"project",
|
|
105
|
-
"human",
|
|
106
|
-
],
|
|
107
|
-
"webapp": [
|
|
108
|
-
"project",
|
|
109
|
-
"frontend",
|
|
110
|
-
"universal",
|
|
111
|
-
"human",
|
|
112
|
-
],
|
|
113
|
-
}
|
|
114
|
-
`;
|