Skip to content

Commit e49b015

Browse files
MacroMan5claude
andcommitted
fix: correct plugin name in installation instructions
Updated all documentation to use the correct plugin name 'automation-helper' instead of 'AutomationHelper_plugins'. The repository name and plugin name were inconsistent, causing installation failures. Changes: - README.md: Fixed plugin install command - INSTALLATION.md: Updated all references (21 locations) - CONTRIBUTING.md: Updated all references (9 locations) Fixes plugin installation issue where users couldn't find the plugin. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 5be7bff commit e49b015

3 files changed

Lines changed: 50 additions & 50 deletions

File tree

CONTRIBUTING.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Contributing to Workflow Automation Suite
1+
# Contributing to Automation Helper
22

3-
Thank you for considering contributing to the Workflow Automation Suite! This document provides guidelines and instructions for contributing.
3+
Thank you for considering contributing to the Automation Helper! This document provides guidelines and instructions for contributing.
44

55
## Table of Contents
66

@@ -46,7 +46,7 @@ Before creating bug reports, please check existing issues to avoid duplicates.
4646
- Expected behavior
4747
- Actual behavior
4848
- Claude Code version (`claude --version`)
49-
- Plugin version (`/plugin info workflow-automation-suite`)
49+
- Plugin version (`/plugin info automation-helper`)
5050
- Operating system
5151
- Error messages or logs
5252

@@ -68,7 +68,7 @@ What actually happened.
6868

6969
**Environment**
7070
- Claude Code: 2.0.13
71-
- Plugin: 1.0.0
71+
- Plugin: 0.1.0-alpha
7272
- OS: macOS 14.2
7373

7474
**Error Messages**
@@ -118,8 +118,8 @@ See [Contributing Documentation](#contributing-documentation) below.
118118

119119
```bash
120120
# Fork the repository on GitHub, then:
121-
git clone https://github.com/YOUR-USERNAME/workflow-automation-suite.git
122-
cd workflow-automation-suite
121+
git clone https://github.com/YOUR-USERNAME/AutomationHelper_plugins.git
122+
cd AutomationHelper_plugins
123123
```
124124

125125
#### 2. Create Development Marketplace
@@ -138,8 +138,8 @@ cat > ~/dev-marketplace/.claude-plugin/marketplace.json << 'EOF'
138138
},
139139
"plugins": [
140140
{
141-
"name": "workflow-automation-suite",
142-
"source": "/FULL/PATH/TO/workflow-automation-suite",
141+
"name": "automation-helper",
142+
"source": "/FULL/PATH/TO/AutomationHelper_plugins",
143143
"description": "Local development version"
144144
}
145145
]
@@ -152,7 +152,7 @@ EOF
152152
```bash
153153
# In Claude Code
154154
/plugin marketplace add ~/dev-marketplace
155-
/plugin install workflow-automation-suite@dev-marketplace
155+
/plugin install automation-helper@dev-marketplace
156156
```
157157

158158
#### 4. Test Your Changes
@@ -161,8 +161,8 @@ After making changes:
161161

162162
```bash
163163
# Uninstall and reinstall to test
164-
/plugin uninstall workflow-automation-suite
165-
/plugin install workflow-automation-suite@dev-marketplace
164+
/plugin uninstall automation-helper
165+
/plugin install automation-helper@dev-marketplace
166166
```
167167

168168
### Creating a Branch
@@ -551,9 +551,9 @@ Closes #issue_number
551551

552552
1. **Installation test:**
553553
```bash
554-
/plugin marketplace add YOUR-FORK/workflow-automation-suite
555-
/plugin install workflow-automation-suite
556-
/plugin info workflow-automation-suite
554+
/plugin marketplace add YOUR-FORK/AutomationHelper_plugins
555+
/plugin install automation-helper
556+
/plugin info automation-helper
557557
```
558558

559559
2. **Skill activation test:**
@@ -602,8 +602,8 @@ Significant contributions may result in:
602602

603603
## Questions?
604604

605-
- **GitHub Discussions:** [Ask questions](https://github.com/therouxe/workflow-automation-suite/discussions)
606-
- **GitHub Issues:** [Report bugs](https://github.com/therouxe/workflow-automation-suite/issues)
605+
- **GitHub Discussions:** [Ask questions](https://github.com/MacroMan5/AutomationHelper_plugins/discussions)
606+
- **GitHub Issues:** [Report bugs](https://github.com/MacroMan5/AutomationHelper_plugins/issues)
607607
- **Email:** [email protected]
608608

609609
## License

INSTALLATION.md

Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ This is the easiest and recommended method for most users.
3030
In Claude Code (terminal or VS Code), run:
3131

3232
```bash
33-
/plugin marketplace add therouxe/workflow-automation-suite
33+
/plugin marketplace add MacroMan5/AutomationHelper_plugins
3434
```
3535

3636
**Expected output:**
3737
```
38-
✓ Marketplace 'workflow-automation-marketplace' added successfully
38+
✓ Marketplace 'automation-helper-marketplace' added successfully
3939
✓ Found 1 plugin available
4040
```
4141

@@ -46,12 +46,12 @@ In Claude Code (terminal or VS Code), run:
4646
```
4747

4848
You'll see the plugin in the list:
49-
- **workflow-automation-suite** - Complete workflow automation toolkit
49+
- **automation-helper** - AI assistant for Power Automate and n8n workflows
5050

5151
#### Step 3: Install the Plugin
5252

5353
```bash
54-
/plugin install workflow-automation-suite
54+
/plugin install automation-helper
5555
```
5656

5757
**Expected output:**
@@ -71,16 +71,16 @@ You'll see the plugin in the list:
7171
You should see:
7272
```
7373
Installed plugins:
74-
- workflow-automation-suite (v1.0.0)
74+
- automation-helper (v0.1.0-alpha)
7575
```
7676

7777
### Method 2: Direct GitHub URL
7878

7979
If you prefer to specify the full URL:
8080

8181
```bash
82-
/plugin marketplace add https://github.com/therouxe/workflow-automation-suite.git
83-
/plugin install workflow-automation-suite
82+
/plugin marketplace add https://github.com/MacroMan5/AutomationHelper_plugins.git
83+
/plugin install automation-helper
8484
```
8585

8686
### Method 3: Local Development Installation
@@ -90,8 +90,8 @@ For testing or development:
9090
#### Step 1: Clone the Repository
9191

9292
```bash
93-
git clone https://github.com/therouxe/workflow-automation-suite.git
94-
cd workflow-automation-suite
93+
git clone https://github.com/MacroMan5/AutomationHelper_plugins.git
94+
cd AutomationHelper_plugins
9595
```
9696

9797
#### Step 2: Create Local Marketplace
@@ -114,8 +114,8 @@ Create `~/dev-marketplace/.claude-plugin/marketplace.json`:
114114
},
115115
"plugins": [
116116
{
117-
"name": "workflow-automation-suite",
118-
"source": "/full/path/to/workflow-automation-suite",
117+
"name": "automation-helper",
118+
"source": "/full/path/to/AutomationHelper_plugins",
119119
"description": "Local development version"
120120
}
121121
]
@@ -126,7 +126,7 @@ Create `~/dev-marketplace/.claude-plugin/marketplace.json`:
126126

127127
```bash
128128
/plugin marketplace add ~/dev-marketplace
129-
/plugin install workflow-automation-suite@dev-marketplace
129+
/plugin install automation-helper@dev-marketplace
130130
```
131131

132132
## Team Installation
@@ -142,10 +142,10 @@ In your team's project repository, create or edit `.claude/settings.json`:
142142
```json
143143
{
144144
"extraKnownMarketplaces": {
145-
"workflow-automation": {
145+
"automation-helper-marketplace": {
146146
"source": {
147147
"source": "github",
148-
"repo": "therouxe/workflow-automation-suite"
148+
"repo": "MacroMan5/AutomationHelper_plugins"
149149
}
150150
}
151151
}
@@ -156,7 +156,7 @@ In your team's project repository, create or edit `.claude/settings.json`:
156156

157157
```bash
158158
git add .claude/settings.json
159-
git commit -m "Add Workflow Automation Suite plugin to team configuration"
159+
git commit -m "Add Automation Helper plugin to team configuration"
160160
git push
161161
```
162162

@@ -190,7 +190,7 @@ The plugin will be automatically installed and ready to use.
190190
Expected output:
191191
```
192192
Installed plugins:
193-
- workflow-automation-suite (v1.0.0)
193+
- automation-helper (v0.1.0-alpha)
194194
Skills: 6
195195
Agents: 4
196196
Status: Active
@@ -201,7 +201,7 @@ Installed plugins:
201201
The skills don't appear in a command list but activate automatically based on your language. To verify they're available, check the plugin details:
202202

203203
```bash
204-
/plugin info workflow-automation-suite
204+
/plugin info automation-helper
205205
```
206206

207207
### 3. Test a Skill
@@ -274,8 +274,8 @@ Skills automatically reference this documentation to provide accurate, hallucina
274274
To update to the latest version:
275275

276276
```bash
277-
/plugin uninstall workflow-automation-suite
278-
/plugin install workflow-automation-suite
277+
/plugin uninstall automation-helper
278+
/plugin install automation-helper
279279
```
280280

281281
### Auto-Update (Team Configuration)
@@ -289,11 +289,11 @@ If installed via team configuration (`.claude/settings.json`), updates happen au
289289

290290
### Plugin Not Found
291291

292-
**Problem**: `/plugin install workflow-automation-suite` fails with "Plugin not found"
292+
**Problem**: `/plugin install automation-helper` fails with "Plugin not found"
293293

294294
**Solution**:
295295
1. Verify marketplace is added: `/plugin marketplace list`
296-
2. If not listed, add it: `/plugin marketplace add therouxe/workflow-automation-suite`
296+
2. If not listed, add it: `/plugin marketplace add MacroMan5/AutomationHelper_plugins`
297297
3. Refresh marketplace: `/plugin marketplace refresh`
298298
4. Try installation again
299299

@@ -303,7 +303,7 @@ If installed via team configuration (`.claude/settings.json`), updates happen au
303303

304304
**Solution**:
305305
1. Verify plugin is active: `/plugin list`
306-
2. If not active, enable it: `/plugin enable workflow-automation-suite`
306+
2. If not active, enable it: `/plugin enable automation-helper`
307307
3. Try using explicit trigger phrases like "I want to optimize this workflow"
308308
4. Check Claude Code debug mode: `claude --debug`
309309

@@ -312,10 +312,10 @@ If installed via team configuration (`.claude/settings.json`), updates happen au
312312
**Problem**: "Agent not found" or agent errors
313313

314314
**Solution**:
315-
1. Verify agents are loaded: `/plugin info workflow-automation-suite`
315+
1. Verify agents are loaded: `/plugin info automation-helper`
316316
2. Check for file path errors in plugin.json
317317
3. Ensure `.claude/agents/` directory exists with .md files
318-
4. Reinstall plugin: `/plugin uninstall workflow-automation-suite && /plugin install workflow-automation-suite`
318+
4. Reinstall plugin: `/plugin uninstall automation-helper && /plugin install automation-helper`
319319

320320
### Documentation Not Found
321321

@@ -342,9 +342,9 @@ If installed via team configuration (`.claude/settings.json`), updates happen au
342342
**Problem**: Multiple versions or conflicting plugins
343343

344344
**Solution**:
345-
1. Uninstall all versions: `/plugin uninstall workflow-automation-suite`
345+
1. Uninstall all versions: `/plugin uninstall automation-helper`
346346
2. Clear marketplace cache: `/plugin marketplace refresh`
347-
3. Reinstall specific version: `/plugin install workflow-automation-suite@1.0.0`
347+
3. Reinstall specific version: `/plugin install automation-helper@0.1.0-alpha`
348348

349349
## Uninstallation
350350

@@ -354,10 +354,10 @@ To completely remove the plugin:
354354

355355
```bash
356356
# Uninstall plugin
357-
/plugin uninstall workflow-automation-suite
357+
/plugin uninstall automation-helper
358358

359359
# Remove marketplace
360-
/plugin marketplace remove workflow-automation-marketplace
360+
/plugin marketplace remove automation-helper-marketplace
361361

362362
# Verify removal
363363
/plugin list
@@ -372,13 +372,13 @@ If installed via team configuration, remove from `.claude/settings.json`:
372372
# Edit .claude/settings.json and remove the extraKnownMarketplaces entry
373373
# Then commit and push
374374
git add .claude/settings.json
375-
git commit -m "Remove Workflow Automation Suite plugin"
375+
git commit -m "Remove Automation Helper plugin"
376376
git push
377377
```
378378

379379
Team members will need to:
380380
1. Pull the changes
381-
2. Manually uninstall: `/plugin uninstall workflow-automation-suite`
381+
2. Manually uninstall: `/plugin uninstall automation-helper`
382382

383383
## Support
384384

@@ -388,16 +388,16 @@ If you encounter issues:
388388

389389
1. **Check logs**: Run Claude Code with `--debug` flag
390390
2. **Review documentation**: [CLAUDE.md](./CLAUDE.md)
391-
3. **Search issues**: [GitHub Issues](https://github.com/therouxe/workflow-automation-suite/issues)
392-
4. **Ask community**: [GitHub Discussions](https://github.com/therouxe/workflow-automation-suite/discussions)
391+
3. **Search issues**: [GitHub Issues](https://github.com/MacroMan5/AutomationHelper_plugins/issues)
392+
4. **Ask community**: [GitHub Discussions](https://github.com/MacroMan5/AutomationHelper_plugins/discussions)
393393
5. **Contact support**: [email protected]
394394

395395
### Reporting Bugs
396396

397397
When reporting issues, include:
398398

399399
- Claude Code version: `claude --version`
400-
- Plugin version: `/plugin info workflow-automation-suite`
400+
- Plugin version: `/plugin info automation-helper`
401401
- Operating system
402402
- Installation method used
403403
- Error messages or logs

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ This plugin adds 6 AI skills to Claude Code that help you work with automation w
5151
/plugin marketplace add MacroMan5/AutomationHelper_plugins
5252

5353
# Install plugin
54-
/plugin install AutomationHelper_plugins
54+
/plugin install automation-helper
5555
```
5656

5757
## Quick Example

0 commit comments

Comments
 (0)