aboutsummaryrefslogtreecommitdiffstats
path: root/docs/argcfile.md
diff options
context:
space:
mode:
authorsigoden <sigoden@gmail.com>2025-02-12 07:33:41 +0800
committerGitHub <noreply@github.com>2025-02-12 07:33:41 +0800
commit4ac72b584526765f980baca4454b613e0f56c1fb (patch)
treee816ca0baf9e27be41c05626d978a1cc9ed39f68 /docs/argcfile.md
parent50ee642b3e109839b52c787a8a999a2e56d36483 (diff)
downloadllm-functions-docker-4ac72b584526765f980baca4454b613e0f56c1fb.tar.gz
feat: support check-related features (#162)
We can run `argc check` to ensure that everything is ready (environment variables, Node/Python dependencies, mcp-bridge server)
Diffstat (limited to 'docs/argcfile.md')
-rw-r--r--docs/argcfile.md16
1 files changed, 15 insertions, 1 deletions
diff --git a/docs/argcfile.md b/docs/argcfile.md
index 9366a76..c420977 100644
--- a/docs/argcfile.md
+++ b/docs/argcfile.md
@@ -16,7 +16,7 @@ argc -h # Print help information
argc <command> -h # Print help information for <command>
# -------- Build --------
-# Build
+# Build all
argc build
# Build all tools
@@ -29,6 +29,20 @@ argc build@agent
# Build specific agents
argc build@agent coder todo
+# -------- Check --------
+# Check all
+argc check
+
+# Check all tools
+argc check@tool
+# Check specific tools
+argc check@tool get_current_weather.sh execute_command.sh
+
+# Check all agents
+argc check@agent
+# Check specific agents
+argc check@agent coder todo
+
# -------- Run --------
# Run tool
argc run@tool get_current_weather.sh '{"location":"London"}'