@getpawl/setup 1.3.3 → 1.3.4
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 +10 -9
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -29,14 +29,12 @@ async function main() {
|
|
|
29
29
|
}
|
|
30
30
|
function printUsage() {
|
|
31
31
|
console.log(`
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
Dashboard: https://agentmap-mimy.onrender.com/dashboard
|
|
32
|
+
Pawl \u2014 project visibility layer for AI-native development
|
|
33
|
+
|
|
34
|
+
Usage:
|
|
35
|
+
pawl init Set up Pawl in this repo
|
|
36
|
+
pawl connect Link this repo to your Pawl dashboard
|
|
37
|
+
pawl sync [--pull] Push session data to dashboard (or pull context)
|
|
40
38
|
`);
|
|
41
39
|
}
|
|
42
40
|
function pawlSync(flag) {
|
|
@@ -181,7 +179,10 @@ async function pawlConnect() {
|
|
|
181
179
|
writePawlEnvFile(cwd, result);
|
|
182
180
|
console.log(" Connected! .pawl/.env written.\n");
|
|
183
181
|
console.log(` Dashboard: https://agentmap-mimy.onrender.com/projects/${result.projectId}`);
|
|
184
|
-
console.log("
|
|
182
|
+
console.log(" You're all set. Pawl will sync automatically after each session.\n");
|
|
183
|
+
console.log(" Useful commands:");
|
|
184
|
+
console.log(" pawl sync --pull Pull latest context before starting work");
|
|
185
|
+
console.log(" pawl sync Push session data manually\n");
|
|
185
186
|
}
|
|
186
187
|
function legacySetup(encoded) {
|
|
187
188
|
let config;
|