Claude AI integration for FreeScout — generates intelligent reply suggestions using the Anthropic Claude API.
Version: 1.0.0 | Author: Wattify
- Generate AI-powered reply suggestions directly from your FreeScout helpdesk
- Full conversation context — Claude reads the entire ticket thread for relevant replies
- One-click insert into the reply editor
- Configurable system prompt to match your brand voice
- Multiple Claude model options (Sonnet, Haiku, Opus)
- Per-message generation via the thread action menu
- FreeScout 1.8+
- PHP 7.3+
- An Anthropic API key
-
Download or clone this repository into your FreeScout
Modulesdirectory:cd /path/to/freescout/Modules git clone https://github.com/wattify/ClaudeAIActive.git -
Create the required symlink:
cd /path/to/freescout php artisan module:publish ClaudeAIActive -
Clear the cache:
php artisan cache:clear php artisan config:clear
-
Go to Manage > Modules in FreeScout and activate ClaudeAIActive.
-
Go to Manage > Settings > Claude AI and enter your Anthropic API key.
Navigate to Manage > Settings > Claude AI to configure:
| Setting | Description | Default |
|---|---|---|
| Anthropic API Key | Your API key from console.anthropic.com | — |
| Claude Model | Which Claude model to use | Claude Sonnet 4.6 |
| Max Tokens | Maximum length of generated replies | 1024 |
| System Prompt | Instructions for how Claude should respond | Professional support assistant |
- Open a conversation in FreeScout
- Click the dropdown menu on any customer message thread
- Select "Generate Reply (Claude AI)"
- A suggestion box appears with the AI-generated reply
- Click "Insert into Reply" to paste it into the reply editor, or "Copy to Clipboard"
- Edit the reply as needed and send
ClaudeAIActive/
├── Config/
│ └── config.php
├── Http/
│ ├── Controllers/
│ │ └── ClaudeAIActiveController.php
│ └── routes.php
├── Providers/
│ └── ClaudeAIActiveServiceProvider.php
├── Public/
│ ├── css/
│ │ └── module.css
│ └── js/
│ └── module.js
├── Resources/
│ ├── lang/
│ │ └── en/
│ │ └── messages.json
│ └── views/
│ └── partials/
│ └── thread_menu.blade.php
├── composer.json
├── module.json
├── start.php
└── version.txt
This module is open-source software licensed under the AGPL-3.0.
Built by Wattify. Powered by Anthropic Claude.