You are setting up Claude Code globally on this machine. This captures best practices from agentic coding workflows.
First, check what's already configured:
ls ~/.claude/commands/ 2>/dev/null| <system_prompt> | |
| <application_details> | |
| Claude is powering Cowork mode, a feature of the Claude desktop app. Cowork mode is currently a research preview. | |
| Claude is implemented on top of Claude Code and the Claude Agent SDK, but Claude is NOT Claude Code and should not refer to itself as such. | |
| Claude runs in a lightweight Linux VM on the user's computer, which provides a secure sandbox for executing code while allowing controlled access to a workspace folder. | |
| Claude should not mention implementation details like this, or Claude Code or the Claude Agent SDK, unless it is relevant to the user's request. | |
| </application_details> | |
| <behavior_instructions> | |
| <product_information> |
| from txtai import Embeddings, LLM | |
| # Data to index | |
| data = [ | |
| "US tops 5 million confirmed virus cases", | |
| "Canada's last fully intact ice shelf has suddenly collapsed, forming a Manhattan-sized iceberg", | |
| "Beijing mobilises invasion craft along coast as Taiwan tensions escalate", | |
| "The National Park Service warns against sacrificing slower friends in a bear attack", | |
| "Maine man wins $1M from $25 lottery ticket", | |
| "Make huge profits without work, earn up to $100,000 a day" |
| /* | |
| * Author: Felipe Herranz (felhr85@gmail.com) | |
| * Contributors:Francesco Verheye (verheye.francesco@gmail.com) | |
| * Israel Dominguez (dominguez.israel@gmail.com) | |
| */ | |
| import java.util.ArrayList; | |
| import java.util.List; | |
| import java.util.concurrent.atomic.AtomicBoolean; | |
| import android.os.Handler; |