@papert-code/papert-code 0.2.3 → 0.2.5

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 (3) hide show
  1. package/README.md +8 -3
  2. package/dist/cli.js +23302 -16021
  3. package/package.json +3 -3
package/README.md CHANGED
@@ -24,7 +24,7 @@ import { createPapertAgent } from '@papert-code/papert-code/api';
24
24
 
25
25
  const agent = await createPapertAgent({
26
26
  cliArgs: {
27
- model: 'papert2.5-coder-32b-instruct',
27
+ model: 'gemini-3-pro',
28
28
  approvalMode: 'auto_edit',
29
29
  },
30
30
  });
@@ -39,6 +39,13 @@ example `~/.papert/settings.json`, `OPENAI_API_KEY`, or Papert OAuth tokens). Us
39
39
  [`examples/programmatic-agent`](./examples/programmatic-agent) sample for a
40
40
  complete walkthrough.
41
41
 
42
+ ## Release (npm)
43
+
44
+ - Bump versions across workspace (root, core, cli, vscode companion as needed) to the target (e.g. 0.2.5).
45
+ - Install deps and run checks: `pnpm install && pnpm lint && pnpm test --filter core && pnpm build`.
46
+ - Publish core and CLI from repo root: `pnpm publish --filter @papert-code/papert-code-core --access public` then `pnpm publish --filter @papert-code/papert-code --access public`.
47
+ - Verify: `npm view @papert-code/papert-code version` (and core) shows the new version; optionally smoke-test `pnpm dlx @papert-code/papert-code@<version> --help`.
48
+
42
49
  ## Installation
43
50
 
44
51
  ### Prerequisites
@@ -156,7 +163,6 @@ papert
156
163
  3. **Automatic Management**: Credentials cached locally for future use
157
164
  4. **No Configuration**: Zero setup required - just start coding!
158
165
 
159
-
160
166
  #### OpenAI-Compatible API
161
167
 
162
168
  Use API keys for OpenAI or other compatible providers:
@@ -179,7 +185,6 @@ Use API keys for OpenAI or other compatible providers:
179
185
  OPENAI_MODEL=your_model_choice
180
186
  ```
181
187
 
182
-
183
188
  ## Usage Examples
184
189
 
185
190
  ### 🔍 Explore Codebases