@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.
Files changed (2) hide show
  1. package/dist/index.js +10 -9
  2. 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
- Usage:
33
- pawl init Initialize Pawl in this repo
34
- pawl connect Link this repo to a Pawl project (opens browser)
35
- pawl sync [--pull] Sync with Pawl dashboard (push by default)
36
- pawl migrate Migrate .pawl/sync.sh from AGENTMAP_* to PAWL_* vars
37
- pawl-setup <PROJECT_KEY> Legacy setup (still supported)
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(" Run `pawl sync` to push your first session.\n");
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getpawl/setup",
3
- "version": "1.3.3",
3
+ "version": "1.3.4",
4
4
  "type": "commonjs",
5
5
  "description": "One-shot setup for Pawl + Claude Code hooks",
6
6
  "bin": {