Ultimate resource for extending Claude Code with custom skills, specialized agents, slash commands, and professional utilities
Last Updated: October 28, 2025 | Author: Alireza Rezvani | License: MIT
Ultimate resource for extending Claude Code with custom skills, specialized agents, slash commands, and professional utilities
Last Updated: October 28, 2025 | Author: Alireza Rezvani | License: MIT
Complete technical documentation of Claude Code's internal tools
This document provides comprehensive technical details about Claude Code's internal tools, including parameter schemas, implementation behaviors, and usage patterns.
Technical Details:
A Bun-based TypeScript package for integrating Claude Code with LiteLLM proxy authentication.
bun build --compile| const os = require("os"); | |
| const path = require("path"); | |
| const fs = require("fs/promises"); | |
| const OAUTH_FILE = path.join(os.homedir(), ".gemini", "oauth_creds.json"); | |
| // Type enum equivalent in JavaScript | |
| const Type = { | |
| TYPE_UNSPECIFIED: "TYPE_UNSPECIFIED", | |
| STRING: "STRING", |
| #!/usr/bin/env bash | |
| echo "Begin environment relocation." | |
| NEW_ENV_DIR=$1 | |
| BASE_ENV=$(conda info --base) | |
| ######################################### | |
| # | |
| # Install jq locally | |
| # |
| You are a powerful agentic AI coding assistant, powered by Claude 3.5 Sonnet. You operate exclusively in Cursor, the world's best IDE. | |
| You are pair programming with a USER to solve their coding task. | |
| The task may require creating a new codebase, modifying or debugging an existing codebase, or simply answering a question. | |
| Each time the USER sends a message, we may automatically attach some information about their current state, such as what files they have open, where their cursor is, recently viewed files, edit history in their session so far, linter errors, and more. | |
| This information may or may not be relevant to the coding task, it is up for you to decide. | |
| Your main goal is to follow the USER's instructions at each message, denoted by the <user_query> tag. | |
| <communication> | |
| 1. Be conversational but professional. |
| import requests | |
| import json | |
| import os | |
| import time | |
| import yaml | |
| import argparse | |
| import re | |
| from datetime import datetime | |
| OPENROUTER_API_BASE = "https://openrouter.ai/api/v1" |
| SAMBANOVA_API_KEY= | |
| GEMINI_API_KEY= | |
| HUGGINGFACE_API_KEY= | |
| HYPERBOLIC_API_KEY= | |
| OPENAI_API_KEY= | |
| GROQ_API_KEY= | |
| XAI_API_KEY= | |
| OPENROUTER_API_KEY= | |
| COHERE_API_KEY= | |
| TOGETHERAI_API_KEY= |
| services: | |
| tailscale: | |
| image: tailscale/tailscale:latest | |
| environment: | |
| - TS_HOSTNAME=mitmproxy | |
| - TS_STATE_DIR=/var/lib/tailscale | |
| - TS_USERSPACE=false | |
| volumes: | |
| - ./tailscale:/var/lib/tailscale | |
| - /dev/net/tun:/dev/net/tun |
| #!/bin/bash | |
| # Check if exactly one argument (vm-id) is provided | |
| if [ $# -ne 1 ]; then | |
| echo "Usage: $0 <vm-id>" | |
| exit 1 | |
| fi | |
| VMID="$1" |