Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计异常

multi-model-writer多模型作家

Agent Skill

multi-model-writer 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

432

周安装

18

GitHub Stars

3

下载量

144
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:multi-model-writer(多模型作家)
来源仓库:https://github.com/drshailesh88/integrated_content_os
仓库路径:skills/multi-model-writer
安装命令:
npx skills add https://github.com/drshailesh88/integrated_content_os --skill multi-model-writer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/drshailesh88/integrated_content_os --skill multi-model-writer

简介

基于多个模型生成多样化写作内容。

  • 支持风格切换与主题适配调整。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 适合长文案、技术说明或创意写作。
  • 应校对事实准确性并控制主观倾向。
  • multi-model-writer 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Multi-Model Writer

Intelligent model routing for all writing tasks. Default is Claude (you), with fallback to other models when requested or when specific capabilities are needed.


Model Arsenal

┌─────────────────────────────────────────────────────────────────────────┐
│                        MULTI-MODEL WRITING SYSTEM                        │
├─────────────────────────────────────────────────────────────────────────┤
│                                                                          │
│  ┌────────────────┐                                                     │
│  │  DEFAULT       │                                                     │
│  │  Claude        │ ← All writing goes here first                       │
│  │  (You)         │   Best quality, medical accuracy                    │
│  └───────┬────────┘                                                     │
│          │                                                               │
│          ▼                                                               │
│  ┌─────────────────────────────────────────────────────────────────┐   │
│  │                    ALTERNATIVE MODELS                            │   │
│  ├──────────────┬──────────────┬──────────────┬──────────────────┤   │
│  │  GLM-4.7     │  GPT-4o      │  Gemini      │  Grok            │   │
│  │  $0.10/M     │  $10/M       │  FREE tier   │  $15/M           │   │
│  │  Bulk drafts │  Quality     │  1500/day    │  Real-time       │   │
│  │  Comparison  │  Editorial   │  Research    │  X/Twitter       │   │
│  └──────────────┴──────────────┴──────────────┴──────────────────┘   │
│                                                                          │
│  ┌─────────────────────────────────────────────────────────────────┐   │
│  │                    BROWSER AUTOMATION                            │   │
│  │  ChatGPT Web │ Gemini Web │ Uses your Pro subscriptions         │   │
│  └─────────────────────────────────────────────────────────────────┘   │
│                                                                          │
└─────────────────────────────────────────────────────────────────────────┘

When to Use Which Model

Claude (DEFAULT) - Use for Everything

  • All medical/cardiology content
  • YouTube scripts (Hinglish)
  • Twitter/X content (English)
  • Editorials and newsletters
  • Anything requiring accuracy

GLM-4.7 (Z.AI) - Bulk & Comparison

Cost: $0.10/M tokens (100x cheaper than Claude) Use when:

  • Generating multiple draft variations
  • A/B testing content angles
  • Bulk social media post generation
  • First drafts for quick iteration
  • Cost is a primary concern
/write-glm "Generate 5 different hooks for a video about statin myths"

GPT-4o / GPT-4o-mini - Quality Alternative

Cost: $0.60/M (mini) or $10/M (4o) Use when:

  • You want to compare Claude vs GPT style
  • Specific OpenAI capabilities needed
  • User explicitly requests "GPT style"
/write-gpt "Write an editorial on SGLT2 inhibitors" --model=4o-mini

Gemini - Research & Free Tier

Cost: FREE (1500 requests/day via AI Studio) Use when:

  • Web research integration
  • Fact-checking
  • You want Google's knowledge
  • Budget is zero
/write-gemini "Summarize recent GLP-1 agonist research"

Grok (xAI) - Real-time & X/Twitter

Cost: $15/M tokens (expensive) Use when:

  • Real-time X/Twitter trends
  • Content specifically for X platform
  • You want Grok's "unfiltered" style
/write-grok "What's trending in cardiology on X right now?"

API Configuration

All APIs are configured in .env:

# Check which APIs are configured
cat .env | grep -E "API_KEY|_KEY"

Required Environment Variables

VariableModelGet From
ANTHROPIC_API_KEYClaudeconsole.anthropic.com
ZAI_API_KEYGLM-4.7z.ai
OPENAI_API_KEYGPT-4oplatform.openai.com
GOOGLE_API_KEYGeminiaistudio.google.com (FREE)
XAI_API_KEYGrokconsole.x.ai

Python Integration

Direct API Calls

from multi_model_writer import ModelRouter

router = ModelRouter()

# Default (Claude via current session)
response = router.write("Your prompt here")

# Specific model
response = router.write("Your prompt", model="glm-4.7")
response = router.write("Your prompt", model="gpt-4o-mini")
response = router.write("Your prompt", model="gemini")
response = router.write("Your prompt", model="grok")

# Cost-optimized (auto-selects cheapest)
response = router.write("Your prompt", optimize="cost")

# Quality-optimized (auto-selects best for task)
response = router.write("Your prompt", optimize="quality")

Batch Comparison

# Generate same content across multiple models for comparison
results = router.compare(
    prompt="Write a tweet about the EMPEROR-Preserved trial",
    models=["claude", "glm-4.7", "gpt-4o-mini"]
)

for model, output in results.items():
    print(f"\n=== {model} ===")
    print(output)

Browser Automation (Web Interfaces)

For using your ChatGPT Plus and Gemini Advanced subscriptions:

Setup

# Ensure Playwright is installed
pip install playwright
playwright install chromium

Usage

See browser-automation skill for detailed instructions.

/browser-chat "Your prompt" --target=chatgpt
/browser-chat "Your prompt" --target=gemini

Cost Tracking

Per-Task Estimates

TaskTokensGLM-4.7GPT-4o-miniGPT-4oClaude
Tweet200$0.00004$0.00012$0.002$0.003
Thread (10 tweets)2,000$0.0004$0.0012$0.02$0.03
Article (1500 words)2,500$0.0005$0.0015$0.025$0.0375
YouTube Script8,000$0.0016$0.0048$0.08$0.12
Newsletter5,000$0.001$0.003$0.05$0.075

Monthly Budget Planning

With $5/month on each:

ModelMonthly Output
GLM-4.7~20,000 articles
GPT-4o-mini~3,300 articles
GPT-4o~200 articles
Grok~130 articles
GeminiUNLIMITED (free tier)

Slash Commands

CommandAction
/write [prompt]Write with Claude (default)
/write-glm [prompt]Write with GLM-4.7
/write-gpt [prompt]Write with GPT-4o-mini
/write-gemini [prompt]Write with Gemini
/write-grok [prompt]Write with Grok
/compare [prompt]Compare outputs across models
/browser-chat [prompt]Use browser automation

Workflow Examples

1. Draft Iteration (Cost-Optimized)

Step 1: Generate 5 hook variations with GLM-4.7 ($0.001)
Step 2: Pick best 2, refine with Claude (default)
Step 3: Final polish with Claude

2. Quality Comparison

Step 1: Write same content with Claude, GPT-4o, GLM-4.7
Step 2: Compare outputs side-by-side
Step 3: Learn which model suits which content type

3. Bulk Social Media

Step 1: Generate 50 tweet variations with GLM-4.7 ($0.001)
Step 2: Filter top 10 manually
Step 3: Polish top 3 with Claude
Step 4: Schedule via your social tools

Model Characteristics

Writing Style Comparison

ModelStyleBest For
ClaudePrecise, nuanced, follows instructions exactlyMedical content, accuracy-critical
GLM-4.7Efficient, code-oriented, conciseBulk generation, structured content
GPT-4oConversational, creative, verboseEditorials, storytelling
GeminiResearch-integrated, factualSummaries, fact-based content
GrokDirect, irreverent, real-time awareTwitter/X content, trending topics

Integration with Existing Skills

This skill works WITH your existing cardiology skills:

1. Use `youtube-script-master` → Routes to Claude by default
2. Use `cardiology-editorial` → Routes to Claude by default
3. Add `--model=glm-4.7` → Overrides to cheaper model
4. Use `/compare` → See all models side-by-side

*This skill gives you a full arsenal of AI models while keeping Claude as your primary, trusted writing partner.*

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

30.28%
按下载量换算44

OpenCode

21.83%
按下载量换算31

Antigravity

19.06%
按下载量换算27

Gemini CLI

14.41%
按下载量换算21

windsurf

8.77%
按下载量换算13

Codex

3.27%
按下载量换算5

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills