From instantly-pack
Configure Instantly local development with hot reload and testing. Use when setting up a development environment, configuring test workflows, or establishing a fast iteration cycle with Instantly. Trigger with phrases like "instantly dev setup", "instantly local development", "instantly dev environment", "develop with instantly".
How this skill is triggered — by the user, by Claude, or both
Slash command
/instantly-pack:instantly-local-dev-loopThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Set up a fast, reproducible local development workflow for Instantly.
Set up a fast, reproducible local development workflow for Instantly.
instantly-install-auth setupmy-instantly-project/
├── src/
│ ├── instantly/
│ │ ├── client.ts # Instantly client wrapper
│ │ ├── config.ts # Configuration management
│ │ └── utils.ts # Helper functions
│ └── index.ts
├── tests/
│ └── instantly.test.ts
├── .env.local # Local secrets (git-ignored)
├── .env.example # Template for team
└── package.json
set -euo pipefail
# Copy environment template
cp .env.example .env.local
# Install dependencies
npm install
# Start development server
npm run dev
{
"scripts": {
"dev": "tsx watch src/index.ts",
"test": "vitest",
"test:watch": "vitest --watch"
}
}
import { describe, it, expect, vi } from 'vitest';
import { InstantlyClient } from '../src/instantly/client';
describe('Instantly Client', () => {
it('should initialize with API key', () => {
const client = new InstantlyClient({ apiKey: 'test-key' });
expect(client).toBeDefined();
});
});
| Error | Cause | Solution |
|---|---|---|
| Module not found | Missing dependency | Run npm install |
| Port in use | Another process | Kill process or change port |
| Env not loaded | Missing .env.local | Copy from .env.example |
| Test timeout | Slow network | Increase test timeout |
vi.mock('@instantly/sdk', () => ({
InstantlyClient: vi.fn().mockImplementation(() => ({
// Mock methods here
})),
}));
set -euo pipefail
# Enable verbose logging
DEBUG=INSTANTLY=* npm run dev
See instantly-sdk-patterns for production-ready code patterns.
npx claudepluginhub aiminnovations/claude-code-plugins-plus --plugin instantly-pack4plugins reuse this skill
First indexed Jul 11, 2026
Guides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.
Synthesizes the current conversation into a structured spec (PRD) and publishes it to the project issue tracker with a ready-for-agent label, without interviewing the user.