create-polos 0.1.1 → 0.1.2

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 +2 -0
  2. package/package.json +6 -1
package/dist/index.js CHANGED
@@ -216,6 +216,7 @@ import { defineAgent, maxSteps, sandboxTools } from '@polos/sdk';
216
216
 
217
217
  const tools = sandboxTools({
218
218
  env: 'local',
219
+ scope: 'session',
219
220
  });
220
221
 
221
222
  export const codingAgent = defineAgent({
@@ -239,6 +240,7 @@ import {
239
240
 
240
241
  const sandbox = sandboxTools({
241
242
  env: 'local',
243
+ scope: 'session',
242
244
  });
243
245
 
244
246
  export const assistantAgent = defineAgent({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-polos",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Scaffold a new Polos agent project",
5
5
  "type": "module",
6
6
  "bin": {
@@ -19,6 +19,11 @@
19
19
  "scaffolding",
20
20
  "cli"
21
21
  ],
22
+ "repository": {
23
+ "type": "git",
24
+ "url": "https://github.com/polos-dev/polos",
25
+ "directory": "create-polos-ts"
26
+ },
22
27
  "license": "Apache-2.0",
23
28
  "dependencies": {
24
29
  "@clack/prompts": "^0.9.1"