Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
653 changes: 337 additions & 316 deletions content/.metadata.json

Large diffs are not rendered by default.

12 changes: 11 additions & 1 deletion content/blog/engineering/claude-code-best-practices.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,9 @@ Claude Code overview

##### Platforms and integrations

* [Overview](https://www.anthropic.com/docs/en/platforms)
* [Remote Control](https://www.anthropic.com/docs/en/remote-control)
* [Claude Code on the web](https://www.anthropic.com/docs/en/claude-code-on-the-web)
* Claude Code on the web
* Claude Code on desktop
* [Chrome extension (beta)](https://www.anthropic.com/docs/en/chrome)
* [Visual Studio Code](https://www.anthropic.com/docs/en/vs-code)
Expand Down Expand Up @@ -265,10 +266,18 @@ git diff main --name-only | claude -p "review these changed files for security i

See the [CLI reference](https://www.anthropic.com/docs/en/cli-reference) for the full set of commands and flags.

Schedule recurring tasks

Run Claude on a schedule to automate work that repeats: morning PR reviews, overnight CI failure analysis, weekly dependency audits, or syncing docs after PRs merge.
* [Cloud scheduled tasks](https://www.anthropic.com/docs/en/web-scheduled-tasks) run on Anthropic-managed infrastructure, so they keep running even when your computer is off. Create them from the web, the Desktop app, or by running `/schedule` in the CLI.
* [Desktop scheduled tasks](https://www.anthropic.com/docs/en/desktop#schedule-recurring-tasks) run on your machine, with direct access to your local files and tools
* [`/loop`](https://www.anthropic.com/docs/en/scheduled-tasks) repeats a prompt within a CLI session for quick polling

Work from anywhere

Sessions aren’t tied to a single surface. Move work between environments as your context changes:
* Step away from your desk and keep working from your phone or any browser with [Remote Control](https://www.anthropic.com/docs/en/remote-control)
* Message [Dispatch](https://www.anthropic.com/docs/en/desktop#sessions-from-dispatch) a task from your phone and open the Desktop session it creates
* Kick off a long-running task on the [web](https://www.anthropic.com/docs/en/claude-code-on-the-web) or [iOS app](https://apps.apple.com/app/claude-by-anthropic/id6473753684), then pull it into your terminal with `/teleport`
* Hand off a terminal session to the [Desktop app](https://www.anthropic.com/docs/en/desktop) with `/desktop` for visual diff review
* Route tasks from team chat: mention `@Claude` in [Slack](https://www.anthropic.com/docs/en/slack) with a bug report and get a pull request back
Expand All @@ -284,6 +293,7 @@ Each surface connects to the same underlying Claude Code engine, so your CLAUDE.
| Continue a local session from my phone or another device | [Remote Control](https://www.anthropic.com/docs/en/remote-control) |
| Push events from Telegram, Discord, or my own webhooks into a session | [Channels](https://www.anthropic.com/docs/en/channels) |
| Start a task locally, continue on mobile | [Web](https://www.anthropic.com/docs/en/claude-code-on-the-web) or [Claude iOS app](https://apps.apple.com/app/claude-by-anthropic/id6473753684) |
| Run Claude on a recurring schedule | [Cloud scheduled tasks](https://www.anthropic.com/docs/en/web-scheduled-tasks) or [Desktop scheduled tasks](https://www.anthropic.com/docs/en/desktop#schedule-recurring-tasks) |
| Automate PR reviews and issue triage | [GitHub Actions](https://www.anthropic.com/docs/en/github-actions) or [GitLab CI/CD](https://www.anthropic.com/docs/en/gitlab-ci-cd) |
| Get automatic code review on every PR | [GitHub Code Review](https://www.anthropic.com/docs/en/code-review) |
| Route bug reports from Slack to pull requests | [Slack](https://www.anthropic.com/docs/en/slack) |
Expand Down
2 changes: 1 addition & 1 deletion content/blog/engineering/claude-code-sandboxing.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Our new sandboxed bash tool and Claude Code on the web offer substantial improve
To get started with these tools:

1. Run `/sandbox` in Claude and check out [our docs](https://docs.claude.com/en/docs/claude-code/sandboxing) on how to configure this sandbox.
2. Go to [claude.com/code](http://claude.ai/redirect/website.v1.06b686e8-9fbc-4d2f-ab23-409b29b3d2b4/code) to try out Claude Code on the web.
2. Go to [claude.com/code](http://claude.ai/redirect/website.v1.e92c1dc2-e8cf-4086-a0a2-26dda848f0a8/code) to try out Claude Code on the web.

Or, if you're building your own agents, check out our [open-sourced sandboxing code](https://github.com/anthropic-experimental/sandbox-runtime), and consider integrating it into your work. We look forward to seeing what you build.

Expand Down
Loading
Loading