skills$openclaw/model-alias-append
ccapton5.0k

by ccapton

model-alias-append – OpenClaw Skill

model-alias-append is an OpenClaw Skills integration for ai ml workflows. |

5.0k stars9.2k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026ai ml

Skill Snapshot

namemodel-alias-append
description| OpenClaw Skills integration.
ownerccapton
repositoryccapton/model-alias-append
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @ccapton/model-alias-append
last updatedFeb 7, 2026

Maintainer

ccapton

ccapton

Maintains model-alias-append in the OpenClaw Skills directory.

View GitHub profile
File Explorer
12 files
.
hooks
response-alias-injector
handler.js
8.5 KB
HOOK.md
1.3 KB
scripts
manage-hook.js
1.8 KB
_meta.json
467 B
main.js
9.8 KB
package.json
2.3 KB
README.md
1.5 KB
SKILL.md
1.9 KB
test-config.json
1.1 KB
SKILL.md

name: model-alias-append version: "1.0.2" description: | 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. license: MIT

Model Alias Append Skill

Automatically appends model alias to responses with configuration change detection

Model Alias Example

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
README.md

Model Alias Append Skill

Automatically appends model alias to responses with configuration change detection

Model Alias Example

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

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install model-alias-append?

Run openclaw add @ccapton/model-alias-append in your terminal. This installs model-alias-append into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/ccapton/model-alias-append. Review commits and README documentation before installing.