@beevibe/daemon 0.1.4 → 0.1.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/dist/main.js +5 -2
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -408,7 +408,10 @@ async function listFilesRecursive(dir) {
|
|
|
408
408
|
return out;
|
|
409
409
|
}
|
|
410
410
|
// ../core/dist/services/skills/tier-filter.js
|
|
411
|
-
var UNIVERSAL_SKILLS = [
|
|
411
|
+
var UNIVERSAL_SKILLS = [
|
|
412
|
+
"beevibe-pre-task-setup",
|
|
413
|
+
"beevibe-verify-pr"
|
|
414
|
+
];
|
|
412
415
|
var TEAM_ONLY_SKILLS = ["beevibe-team-mesh-negotiation"];
|
|
413
416
|
function tierFilterFor(level) {
|
|
414
417
|
if (level === "ic")
|
|
@@ -2824,7 +2827,7 @@ var PLATFORM_ASSETS = {
|
|
|
2824
2827
|
"linux-arm64": "beevibe-daemon-linux-arm64"
|
|
2825
2828
|
};
|
|
2826
2829
|
function currentVersion() {
|
|
2827
|
-
return "0.1.
|
|
2830
|
+
return "0.1.5";
|
|
2828
2831
|
}
|
|
2829
2832
|
function isCompiledBinary() {
|
|
2830
2833
|
if (!process.versions.bun)
|
package/package.json
CHANGED