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:
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:
Core workspace .md files are injected into the LLM system prompt on most requests, with some files loaded conditionally by context. Size still directly impacts token cost, so keep files focused and avoid duplication across files.
These three docs answer different questions:
| File | Primary question it answers | What belongs here | What should not go here |
|---|
Everything built on top of the base OpenClaw platform. Canonical reference for what exists, where it lives, and how it works. Operational use cases and workflow playbooks live in
docs/USE-CASES-WORKFLOWS.md.
You're an AI that chose lobster as its spirit animal. Lobsters are hard to kill and they never stop growing. Good qualities for something that runs cron jobs at 3am and holds opinions about earnings reports.
| """ | |
| For work you need: copy as cUrl (bash) any of `GET` http-requests in Network tab (Chrome Dev-Tools): | |
| - https://www.linkedin.com/voyager/api/relationships/dash/connections?decorationId=com.linkedin.voyager.dash.deco.web.mynetwork.ConnectionListWithProfile-15&count=40&q=search&sortType=RECENTLY_ADDED&start=40 | |
| After paste press Enter twice :) | |
| """ | |
| import logging | |
| import time | |
| import requests | |
| logging.basicConfig(level=logging.DEBUG) |
| dmtoolkit.magejosh.repl.co | |
| seo-plugin.orrenprunckun.com | |
| talkfpl.beegreeeen.workers.dev | |
| videohighlight.com | |
| aiplugin-experiences.owlting.com | |
| www.nani.ooo | |
| jetbook.click | |
| imageeditor.dev | |
| api.speedybrand.io | |
| c-resume.copilot.us |
| #!/usr/bin/bash | |
| # | |
| # Description: Zip the current Titanium project on macOS | |
| # File: backup.sh | |
| # Author: Jose Cerrejon (ulysess_at_gmail.com) | |
| # Help: Copy in the root of your Titanium project and Add to package.json the script: "backup": "sh backup.sh", | |
| # | |
| clear | |
| stop_liveview() { |
| import { createSign, randomBytes } from 'crypto' | |
| import axios from 'axios' | |
| import { resolve } from 'url' | |
| const PK_HEADER = '\n-----BEGIN PRIVATE KEY-----\n' | |
| const PK_FOOTER = '\n-----END PRIVATE KEY-----\n' | |
| const BASE_URL = 'https://marketplace.walmartapis.com/' | |
| const WALMART_CONSUMER = "b68d2a72...."; |
| function doClick(e) { | |
| alert($.label.text); | |
| } | |
| $.index.open(); | |
| var alertFields = { | |
| title: 'Notification', //Android Only | |
| body : 'Just another notification', | |
| badge: 1, |
| //"THE BEER-WARE LICENSE": As long as you retain this notice you can do whatever you want with this stuff. | |
| //If we meet some day, and you think this stuff is worth it, you can buy me a beer in return Jamie Buckley | |
| var win = Ti.UI.createWindow({ | |
| backgroundColor: 'black', | |
| fullscreen: true, | |
| width: Ti.Platform.displayCaps.platformWidth, | |
| height: Ti.Platform.displayCaps.platformHeight | |
| }); |