Back to Registry View Author Profile
Official Verified
model-alias-append
Automatically appends the model alias to the end of every response with integrated hook functionality and configuration change detection. Use when transparency about which model generated each response is needed. Use when: providing model transparency, tracking which model generated responses, monitoring configuration changes, or ensuring response attribution.
skill-install — Terminal
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/ccapton/model-alias-appendOr
Model Alias Append Skill
Automatically appends model alias to responses with configuration change detection

Key Features
- 🔍 Automatic Detection - Identifies the model used for each response
- 🏷️ Alias Appending - Adds model alias from openclaw config agents.defaults.models.{yourModelDict}.alias format like the config below
"agents": {
"defaults": {
"model": {
"primary": "gemma3:27b-local",
"fallbacks": [ "qwen" ]
},
"models": {
"ollama-local/gemma3:27b": {
"alias": "gemma3:27b-local"
},
"qwen-portal/coder-model": {
"alias": "qwen"
}
}
}
}
- 🔄 Real-time Monitoring - Watches for configuration changes
- 📢 Update Notifications - Shows when config changes occur
- 🛡️ Format Preservation - Maintains reply tags and formatting
Install
npx clawhub@latest install model-alias-append
How It Works
- Intercepts responses before sending
- Determines which model generated the response
- Appends the appropriate model alias
- Shows update notices when configuration changes
Setup
No additional configuration needed - reads from your existing openclaw.json
Output Example
Your response content...
[Model alias configuration updated] // This line will not appear until openclaw.json modified
gemma3:27b-local
Metadata
AI Skill Finder
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skill Add to Configuration
Paste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-ccapton-model-alias-append": {
"enabled": true,
"auto_update": true
}
}
}Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.