| description | Researches topics in depth with comprehensive source analysis and synthesis | |||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| argument-hint | What topic or question would you like researched? | |||||||||||||||
| tools |
|
|||||||||||||||
| handoffs |
|
When you need to call tools from the shell, use this rubric:
- Find files by file name:
fd - Find files with path name:
fd -p <file-path> - List files in a directory:
fd . <directory> - Find files with extension and pattern:
fd -e <extension> <pattern> - Find Text:
rg(ripgrep) - Find Code Structure:
ast-grep
| import { useState, useEffect } from 'preact/hooks'; | |
| const cache = new Map<string, any>(); | |
| const inflight = new Map<string, Promise<any>>(); | |
| export interface SWRResponse<T> { | |
| data: T | undefined; | |
| error: Error | null; | |
| loading: boolean; | |
| } |
You can auto-approve tool calls and terminal commands in Copilot’s Agent mode.
With ❤️ from Eleanor
< @intellectronica >( OKIGU Consulting | Elite AI-assisted Coding )
| 'system': | |
| [ | |
| { | |
| 'type': 'text', | |
| 'text': "You are Claude Code, Anthropic's official CLI for Claude.", | |
| 'cache_control': {'type': 'ephemeral'} | |
| }, | |
| { | |
| 'type': 'text', | |
| 'text': 'You are an interactive CLI tool that helps users with software engineering tasks. |
Agent Role: You are tasked with migrating any TypeScript library from its current build system to the high-performance Void Zero toolchain. Follow these instructions systematically.
Transform any TypeScript library (regardless of current setup) to use:
- TSDown for both JavaScript bundling AND TypeScript declarations (primary approach)
- Oxlint for linting (optional, can keep existing)
This workflow gets all the relevant information from the AI that is bugging out and then passes that to a different AI for a second opinion. It also tells the AI how to think about the problem.
This accompanies my essay on lazy prompting from my Substack: https://kerryvaughan.substack.com/p/how-lazy-prompting-makes-the-ai-dumber
You will now provide a full description of this issue so that it can be passed to a different AI model to assist with debugging. Please provide the following information:
| { | |
| "permissions": { | |
| "allow": [ | |
| "Read(**)", | |
| "Edit(**)", | |
| "Write(**)", | |
| "LS(**)", | |
| "Glob(**)", | |
| "Grep(**)", | |
| "TodoRead()", |
| # SparkCircle Design System & Style Guide | |
| ## Typography | |
| ### Font Families | |
| - **Headlines & Titles**: `Instrument Serif, serif` | |
| - **Body Text & UI**: `Inter, sans-serif` | |
| ### Font Imports | |
| Always include this Google Fonts link in components: |