From 61f96028c5733ab5d47fa17da518c8a0fc059dff Mon Sep 17 00:00:00 2001 From: rekram1-node Date: Sun, 24 Aug 2025 23:50:13 -0500 Subject: [PATCH] docs: fix shell examples --- packages/web/src/content/docs/docs/commands.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/web/src/content/docs/docs/commands.mdx b/packages/web/src/content/docs/docs/commands.mdx index 3869ea8a4..621cf8720 100644 --- a/packages/web/src/content/docs/docs/commands.mdx +++ b/packages/web/src/content/docs/docs/commands.mdx @@ -59,7 +59,7 @@ Run the command with arguments: ## Inject shell output -Use `!command` to inject shell command output into your prompt. +Use !`command` to inject shell command output into your prompt. Create `.opencode/command/analyze-coverage.md`: @@ -69,7 +69,7 @@ description: Analyze test coverage --- Here are the current test results: -`!npm test` +!`npm test` Based on these results, suggest improvements to increase coverage. ``` @@ -82,7 +82,7 @@ description: Review recent changes --- Recent git commits: -`!git log --oneline -10` +!`git log --oneline -10` Review these changes and suggest any improvements. ```