oneagent 0.4.4 → 0.4.6
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 +0 -9
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -1780,15 +1780,6 @@ Symlinks:`);
|
|
|
1780
1780
|
const text = !s.exists ? "missing" : s.valid ? "valid" : "broken (wrong target)";
|
|
1781
1781
|
console.log(` ${icon} ${s.label} — ${text}`);
|
|
1782
1782
|
}
|
|
1783
|
-
if (status.generatedFiles.length > 0) {
|
|
1784
|
-
console.log(`
|
|
1785
|
-
Generated files (Copilot):`);
|
|
1786
|
-
for (const f of status.generatedFiles) {
|
|
1787
|
-
const icon = !f.exists ? "✗" : f.upToDate ? "✓" : "⚠";
|
|
1788
|
-
const text = !f.exists ? "missing" : f.upToDate ? "up to date" : "outdated";
|
|
1789
|
-
console.log(` ${icon} ${f.path} — ${text}`);
|
|
1790
|
-
}
|
|
1791
|
-
}
|
|
1792
1783
|
if (activeTargets(config).includes("opencode")) {
|
|
1793
1784
|
const { opencode } = status;
|
|
1794
1785
|
const icon = !opencode.exists ? "✗" : opencode.valid ? "✓" : "⚠";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oneagent",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "One source of truth for AI agent rules — distributed via symlinks to Claude, Cursor, Windsurf, Copilot, OpenCode",
|
|
6
6
|
"license": "MIT",
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@clack/prompts": "latest",
|
|
23
|
-
"@moskala/oneagent-core": "0.
|
|
24
|
-
"@moskala/oneagent-templates": "0.
|
|
23
|
+
"@moskala/oneagent-core": "0.4.6",
|
|
24
|
+
"@moskala/oneagent-templates": "0.4.6",
|
|
25
25
|
"citty": "latest"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|