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.tsCustomization
- Edit
index.tsto change the model, description, or system prompt. - Add route-local tools under
tools/; tool input and output types are inferred from TypeScript. - Run
dawn verifybefore deploying generated LangGraph artifacts.