Skip to content

Commit ce4ae43

Browse files
committed
refactor: rename commands to workflows for Gemini CLI compatibility
1 parent da963e4 commit ce4ae43

35 files changed

Lines changed: 10 additions & 10 deletions

.gemini-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"automation",
2323
"best-practices"
2424
],
25-
"skills": ["./skills/", "./commands/"],
25+
"skills": ["./skills/", "./workflows/"],
2626
"agents": [
2727
"./agents/architect.md",
2828
"./agents/build-error-resolver.md",

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ git clone https://github.com/Jamkris/everything-gemini-code.git
3737
# Copy agents
3838
cp everything-gemini-code/agents/*.md ~/.gemini/agents/
3939

40-
# Copy commands
41-
cp everything-gemini-code/commands/*.md ~/.gemini/commands/
40+
# Copy workflows (Slash Commands)
41+
cp everything-gemini-code/workflows/*.md ~/.gemini/workflows/
4242

4343
# Copy skills
4444
cp -r everything-gemini-code/skills/* ~/.gemini/skills/
@@ -97,7 +97,7 @@ everything-gemini-code/
9797
├── gemini-extension.json # Extension manifest
9898
├── agents/ # Specialized subagents (@planner, @architect, etc.)
9999
├── skills/ # Workflow definitions (TDD, Patterns, etc.)
100-
├── commands/ # Slash commands (/plan, /tdd, etc.)
100+
├── workflows/ # Slash commands (/plan, /tdd, etc.)
101101
├── rules/ # Coding guidelines (TypeScript, Python, Go)
102102
├── hooks/ # Automation triggers (hooks.json)
103103
└── mcp-configs/ # MCP server configurations

gemini-extension.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"automation",
2424
"best-practices"
2525
],
26-
"skills": ["./skills/", "./commands/"],
26+
"skills": ["./skills/", "./workflows/"],
2727
"agents": [
2828
"./agents/architect.md",
2929
"./agents/build-error-resolver.md",

install.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ echo "Installing Gemini CLI Extensions..."
1111

1212
# Ensure directories exist
1313
mkdir -p "$GEMINI_DIR/agents"
14-
mkdir -p "$GEMINI_DIR/commands"
14+
mkdir -p "$GEMINI_DIR/workflows"
1515
mkdir -p "$GEMINI_DIR/skills"
1616
mkdir -p "$GEMINI_DIR/rules"
1717

@@ -21,10 +21,10 @@ if [ -d "agents" ]; then
2121
cp agents/*.md "$GEMINI_DIR/agents/"
2222
fi
2323

24-
# Copy commands
25-
if [ -d "commands" ]; then
26-
echo "Copying commands..."
27-
cp commands/*.md "$GEMINI_DIR/commands/"
24+
# Copy workflows (Slash Commands)
25+
if [ -d "workflows" ]; then
26+
echo "Copying workflows..."
27+
cp workflows/*.md "$GEMINI_DIR/workflows/"
2828
fi
2929

3030
# Copy skills
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)