tpmjs/packages/tools/official/sprites-policy-get
Ajax Davis e4c09a475f fix: correct API endpoints for sprites tools v0.1.3/v0.1.4
Fixed URL endpoints based on Sprites API documentation:
- sprites-sessions: /exec/sessions -> /exec (v0.1.3)
- sprites-policy-get: /policies -> /policy/network (v0.1.3)
- sprites-policy-set: /policies -> /policy/network with rules[] body (v0.1.3)
- sprites-checkpoint-create: /checkpoints -> /checkpoint singular (v0.1.4)

Also fixed checkpoint-create to properly parse NDJSON streaming
response format with type/data/time fields.
2026-01-15 04:30:52 +10:00
..
src fix: correct API endpoints for sprites tools v0.1.3/v0.1.4 2026-01-15 04:30:52 +10:00
package.json fix: correct API endpoints for sprites tools v0.1.3/v0.1.4 2026-01-15 04:30:52 +10:00
README.md feat: add READMEs to sprites packages and fix blocks.yml schema 2026-01-14 16:22:39 +10:00
tsconfig.json refactor: replace exportName with name throughout codebase 2026-01-14 14:18:36 +10:00
tsup.config.ts refactor: replace exportName with name throughout codebase 2026-01-14 14:18:36 +10:00

@tpmjs/sprites-policy-get

Retrieve the current network policy for a sprite including allowed domains.

Installation

npm install @tpmjs/sprites-policy-get

Requirements

Usage

import { spritesPolicyGetTool } from '@tpmjs/sprites-policy-get';

const result = await spritesPolicyGetTool.execute({
  name: 'my-sandbox'
});

console.log(result);
// {
//   mode: 'allow',
//   domains: ['api.github.com', 'registry.npmjs.org'],
//   rules: []
// }

Input Parameters

Parameter Type Required Description
name string Yes Name of the sprite to get policy for

Output

Field Type Description
mode 'allow' | 'deny' Policy mode
domains string[] List of domains affected by the policy
rules object[]? Optional additional filtering rules

Policy Modes

  • allow mode: Blocks all outbound traffic EXCEPT to listed domains
  • deny mode: Allows all outbound traffic EXCEPT to listed domains

Use Cases

  • Audit current network access for a sprite
  • Verify security policies are correctly applied
  • Debug connectivity issues
  • Review allowed domains before running sensitive code

Error Handling

The tool throws errors in these cases:

  • SPRITES_TOKEN environment variable is not set
  • Sprite not found (HTTP 404)
  • Invalid or expired API token (HTTP 401)
  • Network timeout (30 second limit)
  • API errors with descriptive messages

License

MIT