For the complete documentation index, see llms.txt. Markdown variants are available by appending .md to any URL or sending an Accept: text/markdown header. An agent skill is available at /.well-known/agent-skills/site-skill.md.
346
Sponsor

Claw Autonomous Assistant

Operates a sandboxed workspace — read/write files and run shell commands — to finish multi-step tasks.

Output will stream here when you run the agent.

Summary

Claw is an autonomous assistant that operates a sandboxed workspace to finish multi-step tasks. It reads and writes files, runs shell commands scoped to a workspace directory, and follows reusable skills. Reach for it as a base for coding assistants, repo automation, or any agent that needs a real filesystem.

Installation

$ pnpm dlx shadcn@latest add @agentcn/langgraph/claw

Composition

├── index.ts
├── instructions.md
├── lib/workspace.ts
├── skills/workspace/SKILL.md
├── tools/delete_file.ts
├── tools/edit_file.ts
├── tools/grep.ts
├── tools/list_files.ts
├── tools/read_file.ts
├── tools/run_shell.ts
├── tools/write_file.ts

Customization

  • Edit index.ts to change the model, description, or system prompt.
  • Add route-local tools under tools/; tool input and output types are inferred from TypeScript.
  • Run dawn verify before deploying generated LangGraph artifacts.