nairon-bench 0.3.11 → 0.3.12
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/index.js +25 -24
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -10985,11 +10985,10 @@ function analyzePlanning2(agents, git, projectDir, analysis, projectContext) {
|
|
|
10985
10985
|
strengths.push("Has planning skill installed");
|
|
10986
10986
|
} else {
|
|
10987
10987
|
recommendations.push({
|
|
10988
|
-
title: "
|
|
10989
|
-
description: "
|
|
10988
|
+
title: "Add AGENTS.md for planning guidance",
|
|
10989
|
+
description: "Create an AGENTS.md file with project-specific planning instructions",
|
|
10990
10990
|
impact: "medium",
|
|
10991
|
-
type: "
|
|
10992
|
-
installCommand: "npx skills add obra/superpowers/writing-plans"
|
|
10991
|
+
type: "config"
|
|
10993
10992
|
});
|
|
10994
10993
|
}
|
|
10995
10994
|
if (agents && agents.sessions.length > 0) {
|
|
@@ -11282,11 +11281,11 @@ function analyzeReview2(agents, git, tests, projectDir, analysis, projectContext
|
|
|
11282
11281
|
strengths.push("TDD workflow skill installed");
|
|
11283
11282
|
} else {
|
|
11284
11283
|
recommendations.push({
|
|
11285
|
-
title: "
|
|
11286
|
-
description: "
|
|
11287
|
-
impact: "
|
|
11288
|
-
type: "
|
|
11289
|
-
installCommand: "
|
|
11284
|
+
title: "Add testing framework",
|
|
11285
|
+
description: "Install Vitest or Jest for test-driven development",
|
|
11286
|
+
impact: "high",
|
|
11287
|
+
type: "library",
|
|
11288
|
+
installCommand: "bun add -D vitest"
|
|
11290
11289
|
});
|
|
11291
11290
|
}
|
|
11292
11291
|
const hasLinting = existsSync6(join6(projectDir, ".eslintrc.js")) || existsSync6(join6(projectDir, ".eslintrc.json")) || existsSync6(join6(projectDir, "eslint.config.js")) || existsSync6(join6(projectDir, "biome.json"));
|
|
@@ -11860,19 +11859,11 @@ Describe your project structure here.
|
|
|
11860
11859
|
selected: true
|
|
11861
11860
|
},
|
|
11862
11861
|
{
|
|
11863
|
-
id: "
|
|
11864
|
-
name: "
|
|
11865
|
-
type: "
|
|
11866
|
-
description: "
|
|
11867
|
-
installCommand: "
|
|
11868
|
-
selected: true
|
|
11869
|
-
},
|
|
11870
|
-
{
|
|
11871
|
-
id: "debugging-skill",
|
|
11872
|
-
name: "Debugging Skill",
|
|
11873
|
-
type: "skill",
|
|
11874
|
-
description: "Systematic debugging approach",
|
|
11875
|
-
installCommand: "npx skills add obra/superpowers/systematic-debugging",
|
|
11862
|
+
id: "vitest",
|
|
11863
|
+
name: "Vitest",
|
|
11864
|
+
type: "library",
|
|
11865
|
+
description: "Fast unit testing framework",
|
|
11866
|
+
installCommand: "bun add -D vitest",
|
|
11876
11867
|
selected: true
|
|
11877
11868
|
}
|
|
11878
11869
|
]
|
|
@@ -22013,6 +22004,16 @@ var BOLD = "\x1B[1m";
|
|
|
22013
22004
|
var RESET = "\x1B[0m";
|
|
22014
22005
|
var MAGENTA = "\x1B[35m";
|
|
22015
22006
|
var CHANGELOG = [
|
|
22007
|
+
{
|
|
22008
|
+
version: "0.3.12",
|
|
22009
|
+
date: "2026-02-14",
|
|
22010
|
+
title: "Fixed Skill Recommendations",
|
|
22011
|
+
highlights: [
|
|
22012
|
+
"Removed non-existent skill recommendations",
|
|
22013
|
+
"Replaced with real, installable tools (Vitest, etc.)",
|
|
22014
|
+
"Skills installation now foolproof"
|
|
22015
|
+
]
|
|
22016
|
+
},
|
|
22016
22017
|
{
|
|
22017
22018
|
version: "0.3.11",
|
|
22018
22019
|
date: "2026-02-14",
|
|
@@ -22402,7 +22403,7 @@ function showFullChangelog() {
|
|
|
22402
22403
|
// package.json
|
|
22403
22404
|
var package_default = {
|
|
22404
22405
|
name: "nairon-bench",
|
|
22405
|
-
version: "0.3.
|
|
22406
|
+
version: "0.3.12",
|
|
22406
22407
|
description: "AI workflow benchmarking CLI",
|
|
22407
22408
|
type: "module",
|
|
22408
22409
|
bin: {
|
|
@@ -24926,7 +24927,7 @@ function formatBytes(bytes) {
|
|
|
24926
24927
|
// package.json
|
|
24927
24928
|
var package_default2 = {
|
|
24928
24929
|
name: "nairon-bench",
|
|
24929
|
-
version: "0.3.
|
|
24930
|
+
version: "0.3.12",
|
|
24930
24931
|
description: "AI workflow benchmarking CLI",
|
|
24931
24932
|
type: "module",
|
|
24932
24933
|
bin: {
|