@ouro.bot/cli 0.1.0-alpha.61 → 0.1.0-alpha.62
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/changelog.json
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_note": "This changelog is maintained as part of the PR/version-bump workflow. Agent-curated, not auto-generated. Agents read this file directly via read_file to understand what changed between versions.",
|
|
3
3
|
"versions": [
|
|
4
|
+
{
|
|
5
|
+
"version": "0.1.0-alpha.62",
|
|
6
|
+
"changes": [
|
|
7
|
+
"ensureSkillManagement now prints to stdout on install/failure instead of only emitting silent nerves events."
|
|
8
|
+
]
|
|
9
|
+
},
|
|
4
10
|
{
|
|
5
11
|
"version": "0.1.0-alpha.61",
|
|
6
12
|
"changes": [
|
|
@@ -45,9 +45,13 @@ async function ensureSkillManagement() {
|
|
|
45
45
|
if (fs.existsSync(targetPath)) {
|
|
46
46
|
return;
|
|
47
47
|
}
|
|
48
|
+
// eslint-disable-next-line no-console -- terminal UX: visible install status
|
|
49
|
+
console.log("installing skill-management from ouroboros-skills...");
|
|
48
50
|
try {
|
|
49
51
|
const response = await fetch(SKILL_MANAGEMENT_URL);
|
|
50
52
|
if (!response.ok) {
|
|
53
|
+
// eslint-disable-next-line no-console -- terminal UX: visible install status
|
|
54
|
+
console.error(`✗ failed to fetch skill-management (HTTP ${response.status})`);
|
|
51
55
|
(0, runtime_1.emitNervesEvent)({
|
|
52
56
|
level: "warn",
|
|
53
57
|
component: "daemon",
|
|
@@ -60,8 +64,12 @@ async function ensureSkillManagement() {
|
|
|
60
64
|
const content = await response.text();
|
|
61
65
|
fs.mkdirSync(skillsDir, { recursive: true });
|
|
62
66
|
fs.writeFileSync(targetPath, content, "utf-8");
|
|
67
|
+
// eslint-disable-next-line no-console -- terminal UX: visible install status
|
|
68
|
+
console.log("✓ installed skill-management");
|
|
63
69
|
}
|
|
64
70
|
catch (error) {
|
|
71
|
+
// eslint-disable-next-line no-console -- terminal UX: visible install status
|
|
72
|
+
console.error(`✗ failed to install skill-management: ${error instanceof Error ? error.message : String(error)}`);
|
|
65
73
|
(0, runtime_1.emitNervesEvent)({
|
|
66
74
|
level: "warn",
|
|
67
75
|
component: "daemon",
|