New:Socket for Asana Is Now Available.Learn more
Get Started

insta

Package Overview
Dependencies
Maintainers
3
Versions
49
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

insta - npm Package Compare versions

Comparing version
0.0.44
to
0.0.45
+5
-2
dist/commands/setup.js

@@ -62,3 +62,6 @@ // `insta setup agent` — make this machine's coding agents InstaCloud-native in one step

// The tool boxes each line ("│ → ~/.claude/skills/insta │"), so don't anchor to EOL.
const m = plain.match(/→\s*(\S+)\/skills\/[A-Za-z0-9_-]+/);
// Separator-agnostic: on Windows the tool prints C:\Users\…\.claude\skills\insta — a
// forward-slash-only match found nothing there, collapsing the summary to a nameless
// "Agents set up" (user report).
const m = plain.match(/→\s*(\S+)[\\/]skills[\\/][A-Za-z0-9_-]+/);
if (m && m[1])

@@ -489,3 +492,3 @@ paths.add(m[1]);

const mcpOk = claude === 'new' || claude === 'existing' || others.length > 0;
info(`${summarizeInstall(res.output ?? '')} — ready to use InstaCloud${mcpOk ? ' (skill + MCP; restart any open tools)' : ''}`);
info(`${summarizeInstall(res.output ?? '')} — ready to use InstaCloud${mcpOk ? ' (CLI + skill + MCP; restart any open tools)' : ''}`);
if (claude === 'new' && !opts.mcpToken) {

@@ -492,0 +495,0 @@ info(' Claude Code first use: run `/mcp` and authorize in the browser (headless machines: `insta setup agent --mcp-token`)');

{
"name": "insta",
"version": "0.0.44",
"version": "0.0.45",
"type": "module",

@@ -5,0 +5,0 @@ "description": "InstaCloud CLI — a thin client of the platform control-plane API.",

@@ -36,3 +36,3 @@ # insta-cli

```bash
npx -y insta setup agent
npx -y insta@latest setup agent
```

@@ -45,3 +45,3 @@

```bash
npx -y insta setup agent --env staging
npx -y insta@latest setup agent --env staging
```

@@ -48,0 +48,0 @@