twinmind-debug-bundle

Featured

Collect comprehensive diagnostic information for TwinMind issues. Use when preparing support requests, investigating complex problems, or gathering evidence for bug reports. Trigger with phrases like "twinmind debug", "twinmind diagnostics", "collect twinmind info", "twinmind support bundle".

AI & Automation 2,359 stars 334 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# TwinMind Debug Bundle ## Current State !`node --version 2>/dev/null || echo 'N/A'` !`python3 --version 2>/dev/null || echo 'N/A'` !`uname -a` ## Overview Collect comprehensive diagnostic data to troubleshoot TwinMind issues. ## Prerequisites - TwinMind extension or API configured - Access to browser developer tools - Command-line access (for API debugging) ## Instructions ### Step 1: Create Debug Bundle Script ```typescript // scripts/twinmind-debug-bundle.ts import * as fs from 'fs'; import * as os from 'os'; import * as path from 'path'; interface DebugBundle { timestamp: string; environment: EnvironmentInfo; apiStatus: ApiStatus; recentErrors: ErrorEntry[]; configuration: ConfigSnapshot; networkTests: NetworkTest[]; } interface EnvironmentInfo { nodeVersion: string; platform: string; arch: string; osRelease: string; timezone: string; memory: { total: number; free: number; used: number; }; } interface ApiStatus { healthy: boolean; latencyMs: number; endpoint: string; responseHeaders?: Record<string, string>; } interface ErrorEntry { timestamp: string; type: string; message: string; stack?: string; context?: Record<string, any>; } interface ConfigSnapshot { apiKeyPresent: boolean; apiKeyPrefix: string; baseUrl: string; timeout: number; environment: string; } interface NetworkTest { endpoint: string; reachable: boolean; latencyMs?: number; error?: string; } export async function generateD...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
8 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category