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.
Best use case
model-alias-append is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
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.
Teams using model-alias-append should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/model-alias-append/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How model-alias-append Compares
| Feature / Agent | model-alias-append | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
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.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# 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
1. Intercepts responses before sending
2. Determines which model generated the response
3. Appends the appropriate model alias
4. 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
```Related Skills
revenue-model-design
Design a revenue model for a solopreneur business — how money flows in, from whom, and on what cadence.
business-model-canvas
Build, fill, stress-test, and iterate.
model-matrix
Weighted model-routing matrix for OpenClaw (cost-aware, policy-aware, daily scorecard template).
tiktok-ai-model-generator
Generate AI model videos for TikTok livestreams using Pinterest, Claude, Nano Banana Pro, and Veo or Kling. Use for creating AI-generated fashion models wearing products, animating them into videos, or building automated TikTok content production workflows. This skill provides a complete 4-step workflow covering Pinterest reference selection, Claude JSON prompt generation, Nano Banana Pro image generation, and video animation. Perfect for e-commerce sellers, content creators, and TikTok marketers who need AI models to showcase products.
ollama-model-tuner
Optimize Ollama models/prompts using local datasets, eval metrics, and iterative tuning.
fosmvvm-viewmodel-test-generator
Generate ViewModel tests with codable round-trip, versioning stability, and multi-locale translation verification.
fosmvvm-viewmodel-generator
Generate FOSMVVM ViewModels for SwiftUI screens, pages, and components.
fosmvvm-fluent-datamodel-generator
Generate Fluent DataModels for FOSMVVM server-side persistence.
alibaba-cloud-model-setup
Configure OpenClaw (including historical Moltbot/Clawdbot paths) to use Alibaba Cloud Model Studio through a strict.
3d-model-generation
Generate 3D models using each::sense AI.
cross-model-review
Adversarial plan review using two different AI models.
model-router
A comprehensive AI model routing system that automatically selects the optimal model for any task. Set up multiple AI providers (Anthropic, OpenAI, Gemini, Moonshot, Z.ai, GLM) with secure API key storage, then route tasks to the best model based on task type, complexity, and cost optimization. Includes interactive setup wizard, task classification, and cost-effective delegation patterns. Use when you need "use X model for this", "switch model", "optimal model", "which model should I use", or to balance quality vs cost across multiple AI providers.