Complete instructions for installing and configuring the Workflow Automation Suite plugin for Claude Code.
Before installing this plugin, ensure you have:
-
Claude Code installed and configured
- Terminal: Claude Code CLI
- VS Code: Claude Code extension
- Minimum version: 2.0.13 or later (plugin support)
-
Git (for GitHub installation method)
- Required to clone repositories
- Verify:
git --version
-
Active Claude Code Session
- Must be in a project directory
- Claude Code must be running
This is the easiest and recommended method for most users.
In Claude Code (terminal or VS Code), run:
/plugin marketplace add MacroMan5/AutomationHelper_pluginsExpected output:
✓ Marketplace 'automation-helper-marketplace' added successfully
✓ Found 1 plugin available
/pluginYou'll see the plugin in the list:
- automation-helper - AI assistant for Power Automate and n8n workflows
/plugin install automation-helperExpected output:
✓ Installing plugin 'workflow-automation-suite'...
✓ Loaded 6 skills
✓ Registered 4 agents
✓ Plugin installed successfully
/plugin listYou should see:
Installed plugins:
- automation-helper (v0.1.0-alpha)
If you prefer to specify the full URL:
/plugin marketplace add https://github.com/MacroMan5/AutomationHelper_plugins.git
/plugin install automation-helperFor testing or development:
git clone https://github.com/MacroMan5/AutomationHelper_plugins.git
cd AutomationHelper_pluginsCreate a development marketplace directory:
mkdir -p ~/dev-marketplace
cd ~/dev-marketplaceCreate ~/dev-marketplace/.claude-plugin/marketplace.json:
{
"name": "dev-marketplace",
"owner": {
"name": "Development",
"email": "[email protected]"
},
"plugins": [
{
"name": "automation-helper",
"source": "/full/path/to/AutomationHelper_plugins",
"description": "Local development version"
}
]
}/plugin marketplace add ~/dev-marketplace
/plugin install automation-helper@dev-marketplaceTo deploy this plugin across your entire team:
In your team's project repository, create or edit .claude/settings.json:
{
"extraKnownMarketplaces": {
"automation-helper-marketplace": {
"source": {
"source": "github",
"repo": "MacroMan5/AutomationHelper_plugins"
}
}
}
}git add .claude/settings.json
git commit -m "Add Automation Helper plugin to team configuration"
git pushWhen team members pull the repository and trust the folder:
- Pull latest changes:
git pull - Trust the repository in Claude Code
- Plugin auto-installs - Claude Code automatically installs configured marketplaces
If your team administrator has configured the plugin:
- Clone/pull the team repository
- Open in Claude Code
- Trust the repository when prompted
- Verify installation:
/plugin list
The plugin will be automatically installed and ready to use.
/plugin listExpected output:
Installed plugins:
- automation-helper (v0.1.0-alpha)
Skills: 6
Agents: 4
Status: Active
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:
/plugin info automation-helperTry triggering a skill:
"I want to design a workflow to automate email notifications from SharePoint"
Expected: The automation-brainstorm skill should activate and start asking clarifying questions.
Agents are automatically available to Claude Code. They're invoked by skills as needed, so no manual verification is required.
The plugin includes extensive documentation in the Docs/ directory. Claude Code can access this automatically when skills are active.
The plugin works out-of-the-box with default settings. No additional configuration is required.
If you want to customize skill behavior, you can edit the skill files:
.claude/skills/
├── automation-brainstorm/SKILL.md
├── automation-build-flow/SKILL.md
├── automation-debugger/SKILL.md
├── automation-quick-fix/SKILL.md
├── automation-refactor/SKILL.md
└── automation-validator/SKILL.md
Note: Editing these files requires local development installation (Method 3).
Documentation is in the Docs/ directory:
Docs/
├── PowerAutomateDocs/
│ ├── Forms/
│ ├── Excel/
│ ├── Outlook/
│ ├── Teams/
│ ├── SharePoint/
│ ├── OneDrive/
│ └── BuiltIn/
└── N8NDocs/
├── Core/
├── AI/
├── Apps/
└── Database/
Skills automatically reference this documentation to provide accurate, hallucination-free recommendations.
To update to the latest version:
/plugin uninstall automation-helper
/plugin install automation-helperIf installed via team configuration (.claude/settings.json), updates happen automatically when:
- The GitHub repository is updated
- Team members pull latest changes
- Claude Code refreshes the marketplace
Problem: /plugin install automation-helper fails with "Plugin not found"
Solution:
- Verify marketplace is added:
/plugin marketplace list - If not listed, add it:
/plugin marketplace add MacroMan5/AutomationHelper_plugins - Refresh marketplace:
/plugin marketplace refresh - Try installation again
Problem: Skills don't seem to be working when you mention keywords
Solution:
- Verify plugin is active:
/plugin list - If not active, enable it:
/plugin enable automation-helper - Try using explicit trigger phrases like "I want to optimize this workflow"
- Check Claude Code debug mode:
claude --debug
Problem: "Agent not found" or agent errors
Solution:
- Verify agents are loaded:
/plugin info automation-helper - Check for file path errors in plugin.json
- Ensure
.claude/agents/directory exists with .md files - Reinstall plugin:
/plugin uninstall automation-helper && /plugin install automation-helper
Problem: Skills report they can't find documentation
Solution:
- Ensure
Docs/directory exists at plugin root - Verify directory structure matches expectations
- Check file permissions (must be readable)
- Try local development installation for debugging
Problem: "Permission denied" or access errors
Solution:
- Check Git repository access (if using GitHub installation)
- Verify Claude Code has read access to plugin directory
- For team installations, ensure repository is trusted
- Check file permissions:
ls -la .claude-plugin/
Problem: Multiple versions or conflicting plugins
Solution:
- Uninstall all versions:
/plugin uninstall automation-helper - Clear marketplace cache:
/plugin marketplace refresh - Reinstall specific version:
/plugin install automation-helper@0.1.0-alpha
To completely remove the plugin:
# Uninstall plugin
/plugin uninstall automation-helper
# Remove marketplace
/plugin marketplace remove automation-helper-marketplace
# Verify removal
/plugin list
/plugin marketplace listIf installed via team configuration, remove from .claude/settings.json:
# Edit .claude/settings.json and remove the extraKnownMarketplaces entry
# Then commit and push
git add .claude/settings.json
git commit -m "Remove Automation Helper plugin"
git pushTeam members will need to:
- Pull the changes
- Manually uninstall:
/plugin uninstall automation-helper
If you encounter issues:
- Check logs: Run Claude Code with
--debugflag - Review documentation: CLAUDE.md
- Search issues: GitHub Issues
- Ask community: GitHub Discussions
- Contact support: [email protected]
When reporting issues, include:
- Claude Code version:
claude --version - Plugin version:
/plugin info automation-helper - Operating system
- Installation method used
- Error messages or logs
- Steps to reproduce
After successful installation:
- Read the usage guide: CLAUDE.md
- Try the examples: See each skill's EXAMPLE.md file
- Explore documentation: Browse
Docs/directory - Join discussions: Share your workflows and get help
Need help? Open an issue or discussion on GitHub!