codeslop 0.1.6 → 0.1.7
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/bin/wasted.js +6 -5
- package/package.json +1 -1
package/bin/wasted.js
CHANGED
|
@@ -96,12 +96,13 @@ async function init() {
|
|
|
96
96
|
${D}stream mode:${X} ${Y}daily${X} ${D}(only aggregated summaries leave your machine)${X}
|
|
97
97
|
${D}local db:${X} ~/.codeslop/codeslop.db
|
|
98
98
|
${D}config:${X} ~/.codeslop/config.json
|
|
99
|
-
|
|
100
|
-
${B}next steps:${X}
|
|
101
|
-
${G}codeslop setup${X} → install /slop into Claude Code & Cursor
|
|
102
|
-
${G}codeslop scan${X} → detect your AI clients
|
|
103
|
-
${G}codeslop log${X} → record waste manually
|
|
104
99
|
`);
|
|
100
|
+
|
|
101
|
+
// Auto-run setup to install into AI clients
|
|
102
|
+
console.log(` ${B}installing into your AI clients...${X}\n`);
|
|
103
|
+
await setup();
|
|
104
|
+
|
|
105
|
+
console.log(` ${Y}${B}⚡ start a new agent session, then type /slop to scan for waste${X}\n`);
|
|
105
106
|
}
|
|
106
107
|
|
|
107
108
|
async function setup() {
|
package/package.json
CHANGED