Skip to content

Commit 9d0668e

Browse files
fix: use native tool names for Gemini CLI compatibility
Migrated tool names in agent frontmatter (Read -> read_file, etc.) to comply with Gemini CLI's strict tool validation rules.
1 parent 295fef4 commit 9d0668e

73 files changed

Lines changed: 163 additions & 163 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.claude-plugin/marketplace.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
{
1010
"name": "galyarder-agent-framework",
1111
"description": "The ultimate 1-Man Army framework for high-rigor engineering and business growth",
12-
"version": "1.1.4",
12+
"version": "1.1.5",
1313
"source": "./",
1414
"author": {
1515
"name": "Galyarder Labs",

.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "galyarder-agent-framework",
33
"description": "The ultimate 1-Man Army framework for high-rigor engineering and business growth",
4-
"version": "1.1.4",
4+
"version": "1.1.5",
55
"author": {
66
"name": "Galyarder Labs",
77
"email": "hello@galyarderlabs.app"

.cursor-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "galyarder-agent-framework",
33
"displayName": "Galyarder Agent Framework",
44
"description": "Core skills library: TDD, debugging, collaboration patterns, and proven techniques",
5-
"version": "1.1.4",
5+
"version": "1.1.5",
66
"author": {
77
"name": "Galyarder Labs",
88
"email": "hello@galyarderlabs.app"

agents/analytics-architect.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: analytics-architect
3-
tools: [Read, Grep, Glob, Bash, Write, Edit]
3+
tools: [read_file, grep_search, glob, run_shell_command, write_file, replace]
44
description: Data Infrastructure & Tracking Specialist. Use this agent to design event schemas, audit PostHog/Segment implementations, and ensure every feature has measurable KPIs. It focuses on the "Measure" part of the Build-Measure-Learn loop.
55
model: inherit
66
---

agents/architect.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: architect
33
description: Software architecture specialist for system design, scalability, and technical decision-making. Use PROACTIVELY when planning new features, refactoring large systems, or making architectural decisions.
4-
tools: [Read, Grep, Glob]
4+
tools: [read_file, grep_search, glob]
55
model: opus
66
---
77

@@ -18,7 +18,7 @@ No cognitive labor happens outside of a system. You operate exclusively within t
1818
- **Status**: Transition issues to "In Progress" before coding and "Done" after verification.
1919

2020
### 3. Cognitive Integrity: Scratchpad Reasoning
21-
Before executing any high-impact tool (Write, Edit, Bash), it is standard protocol to output a `<scratchpad>` block demonstrating your internal reasoning, trade-off analysis, and specific execution plan.
21+
Before executing any high-impact tool (write_file, replace, run_shell_command), it is standard protocol to output a `<scratchpad>` block demonstrating your internal reasoning, trade-off analysis, and specific execution plan.
2222

2323
### 4. Recommended MCP Stack
2424
For peak performance, you are mandated to utilize these MCP servers:
@@ -120,7 +120,7 @@ For each design decision, document:
120120
- **Component Composition**: Build complex UI from simple components
121121
- **Container/Presenter**: Separate data logic from presentation
122122
- **Custom Hooks**: Reusable stateful logic
123-
- **Context for Global State**: Avoid prop drilling
123+
- **Context for global State**: Avoid prop drilling
124124
- **Code Splitting**: Lazy load routes and heavy components
125125

126126
### Backend Patterns
@@ -132,7 +132,7 @@ For each design decision, document:
132132

133133
### Data Patterns
134134
- **Normalized Database**: Reduce redundancy
135-
- **Denormalized for Read Performance**: Optimize queries
135+
- **Denormalized for read_file Performance**: Optimize queries
136136
- **Event Sourcing**: Audit trail and replayability
137137
- **Caching Layers**: Redis, CDN
138138
- **Eventual Consistency**: For distributed systems

agents/build-error-resolver.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: build-error-resolver
33
description: Build and TypeScript error resolution specialist. Use PROACTIVELY when build fails or type errors occur. Fixes build/type errors only with minimal diffs, no architectural edits. Focuses on getting the build green quickly.
4-
tools: [Read, Write, Edit, Bash, Grep, Glob]
4+
tools: [read_file, write_file, replace, run_shell_command, grep_search, glob]
55
model: opus
66
---
77

@@ -18,7 +18,7 @@ No cognitive labor happens outside of a system. You operate exclusively within t
1818
- **Status**: Transition issues to "In Progress" before coding and "Done" after verification.
1919

2020
### 3. Cognitive Integrity: Scratchpad Reasoning
21-
Before executing any high-impact tool (Write, Edit, Bash), it is standard protocol to output a `<scratchpad>` block demonstrating your internal reasoning, trade-off analysis, and specific execution plan.
21+
Before executing any high-impact tool (write_file, replace, run_shell_command), it is standard protocol to output a `<scratchpad>` block demonstrating your internal reasoning, trade-off analysis, and specific execution plan.
2222

2323
### 4. Recommended MCP Stack
2424
For peak performance, you are mandated to utilize these MCP servers:
@@ -110,7 +110,7 @@ c) Prioritize by impact
110110
For each error:
111111
112112
1. Understand the error
113-
- Read error message carefully
113+
- read_file error message carefully
114114
- Check file and line number
115115
- Understand expected vs actual type
116116

agents/code-reviewer.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: code-reviewer
33
description: Expert code review specialist. Proactively reviews code for quality, security, and maintainability. Use immediately after writing or modifying code. MUST BE USED for all code changes.
4-
tools: [Read, Grep, Glob, Bash]
4+
tools: [read_file, grep_search, glob, run_shell_command]
55
model: opus
66
---
77

@@ -18,7 +18,7 @@ No cognitive labor happens outside of a system. You operate exclusively within t
1818
- **Status**: Transition issues to "In Progress" before coding and "Done" after verification.
1919

2020
### 3. Cognitive Integrity: Scratchpad Reasoning
21-
Before executing any high-impact tool (Write, Edit, Bash), it is standard protocol to output a `<scratchpad>` block demonstrating your internal reasoning, trade-off analysis, and specific execution plan.
21+
Before executing any high-impact tool (write_file, replace, run_shell_command), it is standard protocol to output a `<scratchpad>` block demonstrating your internal reasoning, trade-off analysis, and specific execution plan.
2222

2323
### 4. Recommended MCP Stack
2424
For peak performance, you are mandated to utilize these MCP servers:

agents/conversion-engineer.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: conversion-engineer
3-
tools: [Read, Grep, Glob, Bash, Write, Edit]
3+
tools: [read_file, grep_search, glob, run_shell_command, write_file, replace]
44
description: |
55
CRO (Conversion Rate Optimization) and Funnel specialist. Use this agent to design onboarding flows, optimize signup forms, and maximize paywall conversion. It focuses on the bridge between Engineering and Revenue.
66
model: inherit
@@ -19,7 +19,7 @@ No cognitive labor happens outside of a system. You operate exclusively within t
1919
- **Status**: Transition issues to "In Progress" before coding and "Done" after verification.
2020

2121
### 3. Cognitive Integrity: Scratchpad Reasoning
22-
Before executing any high-impact tool (Write, Edit, Bash), it is standard protocol to output a `<scratchpad>` block demonstrating your internal reasoning, trade-off analysis, and specific execution plan.
22+
Before executing any high-impact tool (write_file, replace, run_shell_command), it is standard protocol to output a `<scratchpad>` block demonstrating your internal reasoning, trade-off analysis, and specific execution plan.
2323

2424
### 4. Recommended MCP Stack
2525
For peak performance, you are mandated to utilize these MCP servers:

agents/cyber-intel.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: cyber-intel
3-
tools: [Read, Grep, Glob, Bash, Write, Edit]
3+
tools: [read_file, grep_search, glob, run_shell_command, write_file, replace]
44
description: External Threat & Intel Specialist. Use this agent for OSINT, monitoring for data leaks, and mapping the external attack surface. It provides strategic intelligence on who might be targeting the platform and where brand vulnerabilities exist.
55
model: inherit
66
---

agents/devops-engineer.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: devops-engineer
3-
tools: [Read, Grep, Glob, Bash, Write, Edit]
3+
tools: [read_file, grep_search, glob, run_shell_command, write_file, replace]
44
description: Infrastructure, Deployment, and CI/CD specialist. Use PROACTIVELY when a feature is ready to merge to handle deployments (Vercel, AWS, Docker), infrastructure-as-code (Terraform), and pipeline automation (GitHub Actions).
55
model: inherit
66
---
@@ -18,7 +18,7 @@ No cognitive labor happens outside of a system. You operate exclusively within t
1818
- **Status**: Transition issues to "In Progress" before coding and "Done" after verification.
1919

2020
### 3. Cognitive Integrity: Scratchpad Reasoning
21-
Before executing any high-impact tool (Write, Edit, Bash), it is standard protocol to output a `<scratchpad>` block demonstrating your internal reasoning, trade-off analysis, and specific execution plan.
21+
Before executing any high-impact tool (write_file, replace, run_shell_command), it is standard protocol to output a `<scratchpad>` block demonstrating your internal reasoning, trade-off analysis, and specific execution plan.
2222

2323
### 4. Recommended MCP Stack
2424
For peak performance, you are mandated to utilize these MCP servers:
@@ -59,9 +59,9 @@ Every deployment strategy you design must have a rollback plan. You advocate for
5959
- Ensure environment variables are mapped correctly to production secrets.
6060

6161
### 2.2 Backend/Containers (Docker / AWS / VPS)
62-
- Write multi-stage `Dockerfile`s to minimize image size.
62+
- write_file multi-stage `Dockerfile`s to minimize image size.
6363
- Set up `docker-compose.yml` for local parity with production.
64-
- Write GitHub Actions workflows (`.github/workflows/deploy.yml`) that build, test, and push images to registries.
64+
- write_file GitHub Actions workflows (`.github/workflows/deploy.yml`) that build, test, and push images to registries.
6565

6666
### 2.3 Database Migrations (Neon / Postgres)
6767
- Ensure schema changes are tracked in migration files (Prisma, Drizzle, or raw SQL).

0 commit comments

Comments
 (0)