Usage

Which Claude Code features this work actually leans on — mined from session transcripts. Metadata only: tool names and timing, never commands or content.

scanned 3w ago
40,875
Tool calls
54
Features
8
Workflows
218
Sessions
33
Active days
Shell
Top kind

By category

9 kinds

Activity

peak 4341/day

By project

3 shown

Recommended, but rarely used

High-leverage features the playbook flags that this work barely touches.

  • code-reviewWhenever a skill matches the task; it beats hand-assembling the steps.
  • update-configWhenever a skill matches the task; it beats hand-assembling the steps.
  • frontend-designWhenever a skill matches the task; it beats hand-assembling the steps.
  • scheduleWhenever a skill matches the task; it beats hand-assembling the steps.
  • brainstormWhenever a skill matches the task; it beats hand-assembling the steps.
  • persona-designWhenever a skill matches the task; it beats hand-assembling the steps.
  • WorkflowAudits, migrations, multi-file reviews, or any fan-out where you want structure and an adversarial verify pass rather than one serial pass.
  • SubagentIndependent work you can delegate and keep only the conclusion of — broad searches, or parallel tasks that would otherwise blow up the main context.

Routines you could automate

10 found

Tool-sequences this work repeats by hand, mined from session history. Each scaffold is a starting point to adapt, not a finished workflow.

command:/clear·code
manual
159 sessions · 159 times · last 3w ago
Automation scaffold
A recurring sequence:
1. run /clear
2. edit files / run code & tests

Worth saving as a slash-command if you find yourself repeating it.
·codeSkill:pre-push-review·code
skill
157 sessions · 163 times · last 4w ago
Automation scaffold
You already run the `pre-push-review` skill inside this sequence:
1. edit files / run code & tests
2. run the pre-push-review skill
3. edit files / run code & tests

Invoke it directly with `/pre-push-review`, and consider a saved slash-command that runs the surrounding steps so the whole sequence is one action.
·codeAgent:general-purpose·code
loop
119 sessions · 244 times · last 4w ago
Automation scaffold
This is an edit → verify loop you repeat by hand:
1. edit files / run code & tests
2. spawn a general-purpose subagent
3. edit files / run code & tests

Automate it with `/loop` (re-run the check on an interval) or a small Workflow that re-runs the verification until it passes:
```js
// /loop <your verify command>   — simplest option
// or a Workflow:
while (!passed) { await agent('run the verification, report pass/fail', {schema: VERDICT}); }
```
_Starting scaffold — adapt before running._
Skill:pre-push-review·codeAgent:general-purpose·code
skill
80 sessions · 82 times · last 4w ago
Automation scaffold
You already run the `pre-push-review` skill inside this sequence:
1. run the pre-push-review skill
2. edit files / run code & tests
3. spawn a general-purpose subagent
4. edit files / run code & tests

Invoke it directly with `/pre-push-review`, and consider a saved slash-command that runs the surrounding steps so the whole sequence is one action.
·codeSkill:pre-push-review·codeAgent:general-purpose
skill
78 sessions · 80 times · last 4w ago
Automation scaffold
You already run the `pre-push-review` skill inside this sequence:
1. edit files / run code & tests
2. run the pre-push-review skill
3. edit files / run code & tests
4. spawn a general-purpose subagent

Invoke it directly with `/pre-push-review`, and consider a saved slash-command that runs the surrounding steps so the whole sequence is one action.
Task·codeTask·code
loop
72 sessions · 331 times · last 4w ago
Automation scaffold
This is an edit → verify loop you repeat by hand:
1. run a background task
2. edit files / run code & tests
3. run a background task
4. edit files / run code & tests

Automate it with `/loop` (re-run the check on an interval) or a small Workflow that re-runs the verification until it passes:
```js
// /loop <your verify command>   — simplest option
// or a Workflow:
while (!passed) { await agent('run the verification, report pass/fail', {schema: VERDICT}); }
```
_Starting scaffold — adapt before running._
·codeTask·codeTask
loop
71 sessions · 335 times · last 4w ago
Automation scaffold
This is an edit → verify loop you repeat by hand:
1. edit files / run code & tests
2. run a background task
3. edit files / run code & tests
4. run a background task

Automate it with `/loop` (re-run the check on an interval) or a small Workflow that re-runs the verification until it passes:
```js
// /loop <your verify command>   — simplest option
// or a Workflow:
while (!passed) { await agent('run the verification, report pass/fail', {schema: VERDICT}); }
```
_Starting scaffold — adapt before running._
·codemcp:playwright·code
loop
62 sessions · 394 times · last 4w ago
Automation scaffold
This is an edit → verify loop you repeat by hand:
1. edit files / run code & tests
2. drive playwright over MCP
3. edit files / run code & tests

Automate it with `/loop` (re-run the check on an interval) or a small Workflow that re-runs the verification until it passes:
```js
// /loop <your verify command>   — simplest option
// or a Workflow:
while (!passed) { await agent('run the verification, report pass/fail', {schema: VERDICT}); }
```
_Starting scaffold — adapt before running._
·codeTask·codeSkill:pre-push-review
skill
51 sessions · 51 times · last 4w ago
Automation scaffold
You already run the `pre-push-review` skill inside this sequence:
1. edit files / run code & tests
2. run a background task
3. edit files / run code & tests
4. run the pre-push-review skill

Invoke it directly with `/pre-push-review`, and consider a saved slash-command that runs the surrounding steps so the whole sequence is one action.
Task·codeSkill:pre-push-review·code
skill
50 sessions · 50 times · last 4w ago
Automation scaffold
You already run the `pre-push-review` skill inside this sequence:
1. run a background task
2. edit files / run code & tests
3. run the pre-push-review skill
4. edit files / run code & tests

Invoke it directly with `/pre-push-review`, and consider a saved slash-command that runs the surrounding steps so the whole sequence is one action.

Features

54 used
Shell
Shell
22,295
calls

Runs a shell command in the working directory.

last 3w ago
Edit file
Files
7,523
calls

Exact string-replacement edit on a previously read file.

last 3w ago
Read file
Files
4,773
calls

Reads a file (text, image, PDF, or notebook) from disk.

last 3w ago
Write file
Files
2,315
calls

Creates a new file or fully replaces an existing one.

last 3w ago
Background task
Orchestration
1,250
calls

Creates and tracks an asynchronous task that runs across turns.

last 4w ago
general-purpose
Orchestration
351
calls
last 4w ago
playwright.browser_navigate
Integrations
289
calls

Calls an external system over MCP (browser automation, Drive, Gmail, Notion, etc.).

last 4w ago
Tool search
Search
288
calls

Loads deferred tool schemas on demand so they become callable.

last 4w ago
Ask user
Other
228
calls

Presents a structured multiple-choice question to the user.

last 4w ago
playwright.browser_evaluate
Integrations
187
calls

Calls an external system over MCP (browser automation, Drive, Gmail, Notion, etc.).

last 4w ago
playwright.browser_take_screenshot
Integrations
177
calls

Calls an external system over MCP (browser automation, Drive, Gmail, Notion, etc.).

last 4w ago
pre-push-review
Skills
173
calls

Invokes a packaged skill / slash-command — a reusable procedure with its own instructions.

last 4w ago
/clear
Commands
166
calls

A slash-command typed into the prompt.

last 4w ago
playwright.browser_resize
Integrations
111
calls

Calls an external system over MCP (browser automation, Drive, Gmail, Notion, etc.).

last 4w ago
Explore
Orchestration
107
calls
last 4w ago
playwright.browser_snapshot
Integrations
80
calls

Calls an external system over MCP (browser automation, Drive, Gmail, Notion, etc.).

last 1mo ago
playwright.browser_click
Integrations
79
calls

Calls an external system over MCP (browser automation, Drive, Gmail, Notion, etc.).

last 1mo ago
SendUserFile
Other
66
calls
last 4w ago
playwright.browser_run_code_unsafe
Integrations
49
calls

Calls an external system over MCP (browser automation, Drive, Gmail, Notion, etc.).

last 1mo ago
playwright.browser_close
Integrations
45
calls

Calls an external system over MCP (browser automation, Drive, Gmail, Notion, etc.).

last 4w ago
Web fetch
Web
33
calls

Fetches and reads a specific URL.

last 4w ago
playwright.browser_type
Integrations
33
calls

Calls an external system over MCP (browser automation, Drive, Gmail, Notion, etc.).

last 1mo ago
Monitor
Other
31
calls
last 4w ago
playwright.browser_console_messages
Integrations
29
calls

Calls an external system over MCP (browser automation, Drive, Gmail, Notion, etc.).

last 4w ago
Web search
Web
24
calls

Searches the web.

last 4w ago
release-test
Skills
22
calls

Invokes a packaged skill / slash-command — a reusable procedure with its own instructions.

last 4w ago
playwright.browser_wait_for
Integrations
20
calls

Calls an external system over MCP (browser automation, Drive, Gmail, Notion, etc.).

last 1mo ago
/model
Commands
19
calls

A slash-command typed into the prompt.

last 4w ago
ScheduleWakeup
Other
17
calls
last 1mo ago
general
Orchestration
13
calls
last 1mo ago
(custom)
Orchestration
8
calls
last 1mo ago
(other)
Skills
7
calls

Invokes a packaged skill / slash-command — a reusable procedure with its own instructions.

last 4w ago
Artifact
Other
6
calls
last 4w ago
RemoteTrigger
Other
6
calls
last 1mo ago
/compact
Commands
5
calls

A slash-command typed into the prompt.

last 3w ago
playwright.browser_press_key
Integrations
5
calls

Calls an external system over MCP (browser automation, Drive, Gmail, Notion, etc.).

last 1mo ago
(other)
Commands
5
calls

A slash-command typed into the prompt.

last 1mo ago
SendMessage
Other
5
calls
last 1mo ago
claude-api
Skills
4
calls

Invokes a packaged skill / slash-command — a reusable procedure with its own instructions.

last 4w ago
playwright.browser_fill_form
Integrations
4
calls

Calls an external system over MCP (browser automation, Drive, Gmail, Notion, etc.).

last 1mo ago
/login
Commands
4
calls

A slash-command typed into the prompt.

last 1mo ago
EnterPlanMode
Other
3
calls
last 1mo ago
ExitPlanMode
Other
3
calls
last 1mo ago
code-review
Skills
2
calls

Invokes a packaged skill / slash-command — a reusable procedure with its own instructions.

last 4w ago
PushNotification
Other
2
calls
last 4w ago
update-config
Skills
2
calls

Invokes a packaged skill / slash-command — a reusable procedure with its own instructions.

last 1mo ago
playwright.browser_network_requests
Integrations
2
calls

Calls an external system over MCP (browser automation, Drive, Gmail, Notion, etc.).

last 1mo ago
frontend-design
Skills
2
calls

Invokes a packaged skill / slash-command — a reusable procedure with its own instructions.

last 1mo ago
schedule
Skills
2
calls

Invokes a packaged skill / slash-command — a reusable procedure with its own instructions.

last 1mo ago
playwright.browser_select_option
Integrations
1
calls

Calls an external system over MCP (browser automation, Drive, Gmail, Notion, etc.).

last 1mo ago
playwright.browser_hover
Integrations
1
calls

Calls an external system over MCP (browser automation, Drive, Gmail, Notion, etc.).

last 1mo ago
/run
Commands
1
calls

A slash-command typed into the prompt.

last 1mo ago
brainstorm
Skills
1
calls

Invokes a packaged skill / slash-command — a reusable procedure with its own instructions.

last 1mo ago
persona-design
Skills
1
calls

Invokes a packaged skill / slash-command — a reusable procedure with its own instructions.

last 1mo ago