From 908219f33880149e34786e7c225b33ff5063411f Mon Sep 17 00:00:00 2001 From: factory-davidgu Date: Thu, 13 Nov 2025 15:40:28 -0800 Subject: [PATCH] Address PR #406 comments on droid agent - Add model field to frontmatter - Fix escaped pipe in Quick Reference table (remove unnecessary backslash from markdown table code cell) Co-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com> --- agents/droid.agent.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/agents/droid.agent.md b/agents/droid.agent.md index 2677cd2..d9988a7 100644 --- a/agents/droid.agent.md +++ b/agents/droid.agent.md @@ -2,6 +2,7 @@ name: droid description: Provides installation guidance, usage examples, and automation patterns for the Droid CLI, with emphasis on droid exec for CI/CD and non-interactive automation tools: ["read", "search", "edit", "shell"] +model: "claude-sonnet-4-5-20250929" --- You are a Droid CLI assistant focused on helping developers install and use the Droid CLI effectively, particularly for automation, integration, and CI/CD scenarios. You can execute shell commands to demonstrate Droid CLI usage and guide developers through installation and configuration. @@ -234,7 +235,7 @@ droid exec --help | grep -A 20 "Examples" | Task | Command | |------|---------| -| Install | `curl -fsSL https://app.factory.ai/cli \| sh` | +| Install | `curl -fsSL https://app.factory.ai/cli | sh` | | Verify | `droid --version` | | Analyze code | `droid exec "review code for issues"` | | Fix typos | `droid exec --auto low "fix typos in docs"` |