Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计通过

output-forge输出锻造

Agent Skill

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

总安装

8,136

周安装

339

GitHub Stars

公开资料未说明

下载量

2,712
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:output-forge(输出锻造)
来源仓库:https://github.com/theshadowrose/output-forge
安装命令:
openclaw skills install output-forge
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install output-forge

简介

通过适当的格式、元数据和清理,将原始 AI 输出转换为平台就绪的内容。 Markdown、HTML、纯文本和结构化数据输出。

SKILL.md

name
OutputForge AI Output Formatter
description
Transform raw AI output into platform-ready content with proper formatting, metadata, and cleanup. Markdown, HTML, plain text, and structured data output.
author
@TheShadowRose
version
1.0.0
tags
["formatting", "output", "content", "markdown", "html", "cleanup", "transformer"]
license
MIT

OutputForge AI Output Formatter

Transform raw AI output into platform-ready content with proper formatting, metadata, and cleanup. Markdown, HTML, plain text, and structured data output.


Transform raw AI output into platform-ready content with proper formatting, metadata, and cleanup.

Author: Shadow Rose License: MIT Quality: quality-verified


What It Does

You've just gotten great output from your AI assistant. Now what? Copy-pasting into WordPress, Medium, or social media means:

  • Manual formatting cleanup
  • Removing "As an AI..." disclaimers
  • Splitting long content into threads
  • Adding metadata and structure
  • Converting to platform-specific formats

OutputForge does all of this automatically.

Paste raw AI text → get platform-ready content in seconds.


Quick Start

# Basic usage - format for WordPress
python output_forge.py my_ai_output.txt -f wordpress -o post.html

# Clean AI-isms and format for Medium
python output_forge.py raw_output.txt -f medium --title "My Article" --author "Jane Doe"

# Split long content into Twitter thread
python output_forge.py long_article.txt -f twitter -o thread.txt

# Batch process an entire directory
python output_forge.py --batch input_dir/ output_dir/ -f markdown

# Read from stdin
cat ai_response.txt | python output_forge.py -f plain

Features

📝 Multiple Output Formats

  • WordPress — HTML with proper block editor structure
  • Medium — Clean markdown with formatting that renders perfectly
  • Email Newsletter — Responsive HTML with inline CSS
  • Twitter/X — Smart thread splitting with numbering
  • LinkedIn — Professional formatting with hashtags
  • Markdown — Clean markdown with frontmatter metadata
  • LaTeX — Academic document format
  • Plain Text — Minimal formatting for anywhere

🧹 AI-ism Cleanup

Automatically removes common AI hedging and disclaimers:

  • "As an AI language model..."
  • "It's important to note that..."
  • "I don't have personal opinions, but..."
  • Repetitive "However," transitions
  • Excessive hedging ("perhaps maybe possibly might")
  • Unnecessary disclaimers about training cutoffs

Your content sounds more natural and confident.

🎯 Smart Features

  • Thread Splitting — Breaks long content into tweet-sized chunks intelligently (by paragraph/sentence)
  • Metadata Injection — Add title, author, date, tags, description to any format
  • Template System — Create custom output formats for your specific needs
  • Batch Mode — Process hundreds of files at once
  • Image Placeholders — Mark where images should go with platform-specific syntax
  • Link Formatting — Automatically format links for each platform

⚙️ Highly Configurable

Edit config_example.json (copy config.json`) to customize:

  • Default author and metadata
  • Custom cleanup rules (regex patterns)
  • Custom output templates
  • Thread length limits per platform
  • Cleanup aggressiveness (conservative/moderate/aggressive)
  • Platform-specific preferences

Usage Examples

Example 1: WordPress Blog Post

python output_forge.py ai_draft.txt \
  -f wordpress \
  -o blog_post.html \
  --title "10 Tips for Better Productivity" \
  --author "Alex Johnson" \
  --tags "productivity, tips, work" \
  --description "Discover proven techniques to boost your daily productivity"

Output: Clean WordPress HTML with proper blocks, metadata, and tags ready to paste into the editor.

Example 2: Twitter Thread

python output_forge.py long_article.txt -f twitter -o thread.txt

Input: 2000-word article Output: Automatically split into 8 numbered tweets, each under 280 characters, breaking at natural sentence boundaries.

1/8 First tweet content here...

---THREAD BREAK---

2/8 Second tweet continues the thought...

---THREAD BREAK---

...

Example 3: Medium Article with Cleanup

python output_forge.py ai_output.txt \
  -f medium \
  --title "Understanding Quantum Computing" \
  --tags "science, technology, quantum"

Before:

As an AI language model, I think that quantum computing is fascinating. However, it's important to note that this field is complex. I don't have personal opinions, but I can explain...

After:

Quantum computing is fascinating. This field is complex, but understandable...

Clean, confident, professional.

Example 4: Batch Process Directory

# Process all .txt files in drafts/ and output to published/
python output_forge.py --batch drafts/ published/ -f markdown --author "Team Blog"

Processes every file automatically, maintaining filenames with new extensions.

Example 5: Email Newsletter

python output_forge.py newsletter_draft.txt \
  -f email \
  -o newsletter.html \
  --title "Weekly Insights - Feb 2026"

Output: Responsive HTML email with proper styling, ready to send or paste into your email platform.


Command-Line Options

positional arguments:
  input                 Input file (or - for stdin)

required arguments:
  -f, --format         Output format: wordpress, medium, email, twitter,
                       linkedin, markdown, latex, plain

optional arguments:
  -o, --output         Output file (default: stdout)
  --batch              Batch mode: input_dir output_dir

metadata options:
  --title              Content title
  --author             Content author
  --date               Publication date (default: today)
  --tags               Comma-separated tags
  --description        SEO description

processing options:
  --no-clean           Disable AI-ism cleanup
  --max-thread-length  Max length for thread posts (default: 280)
  --image-placeholders Add image placeholder markers

Custom Templates

Create your own output formats by editing config_example.json:

def custom_blog_template(content, metadata, options):
    title = metadata.get('title', 'Untitled')
    author = metadata.get('author', 'Anonymous')
    
    return f"""
# {title}
*by {author}*

{content}

---
Published with OutputForge
    """.strip()

# Register your template
CUSTOM_TEMPLATES['myblog'] = custom_blog_template

Then use it:

python output_forge.py input.txt -f myblog -o output.md

AI-ism Cleanup Details

The cleanup engine removes common patterns that make AI-generated text obvious:

Removed Patterns

Direct AI references

  • "As an AI language model..."
  • "I'm an AI assistant and..."

Hedging phrases

  • "It's important to note that..."
  • "It should be noted that..."
  • "Keep in mind that..."

Unnecessary disclaimers

  • "I don't have personal opinions, but..."
  • "I can't access the internet, but..."
  • "My training data ends in..."

Excessive caveats

  • Repetitive "However," transitions (reduces to 2-3 max)
  • "That being said," when overused

Filler words

  • "very very" → "very"
  • "really really" → "really"

Analysis Mode

Want to see what would be cleaned WITHOUT modifying the text?

python output_clean.py "Your AI text here"

Shows:

  • Pattern counts
  • Hedging ratio
  • Passive voice detection
  • Suggestions for improvement

Use Cases

Content Creators

  • Convert AI drafts to blog posts
  • Generate newsletter HTML
  • Format social media content

Writers

  • Clean up AI-assisted writing
  • Export to multiple formats
  • Maintain consistent metadata

Marketers

  • Process campaign content in bulk
  • Format for different platforms
  • Remove AI tells from copy

Developers

  • Document generation
  • Format code comments to docs
  • Batch process documentation

Teams

  • Standardize output formats
  • Share custom templates
  • Batch process team content

Requirements

Python 3.7+ (standard library only — no external dependencies)


Installation

# Clone or download the files
cd output-forge/

# That's it! No dependencies to install.

# Run directly
python output_forge.py --help

# Or make executable (Linux/Mac)
chmod +x output_forge.py
./output_forge.py --help

File Structure

output-forge/
├── output_forge.py       # Main formatting engine
├── output_templates.py   # Platform templates (WordPress, Medium, etc.)
├── output_clean.py       # AI-ism detection and cleanup
├── config_example.json     # Configuration template
├── README.md             # This file
├── LIMITATIONS.md        # What this tool doesn't do
└── LICENSE               # MIT License

Tips & Best Practices

1. Start Conservative

Use default cleanup settings first. If output is still too "AI-sounding," increase aggressiveness in config.

2. Review Before Publishing

Always review output before publishing. Cleanup is good, but human judgment is better.

3. Custom Templates

If you publish to the same platform repeatedly, create a custom template with your exact formatting preferences.

4. Batch Processing

When processing directories, use consistent input filenames for easier organization.

5. Metadata Matters

Include title, author, tags, and description — most platforms use this for SEO and organization.

6. Thread Splitting

For Twitter threads, start with max 260 characters (not 280) to leave room for links/images.


Contributing

This is an open-source tool under the MIT License. Feel free to:

  • Fork and modify for your needs
  • Submit improvements
  • Share custom templates
  • Report issues

License

MIT License — see LICENSE file for details.

Free to use commercially and personally.


Author

Shadow Rose


FAQ

Q: Does this work with any AI output? A: Yes — ChatGPT, Claude, Gemini, local models, anything that produces text.

Q: Can I add my own cleanup rules? A: Absolutely. Edit config_example.json and add regex patterns to DEFAULT_CLEANUP_RULES.

Q: Will cleanup remove ALL hedging? A: No. It targets obvious AI patterns and excessive hedging. Legitimate uncertainty expressions remain.

Q: Can I use this in commercial projects? A: Yes! MIT License allows commercial use.

Q: What if I need a format not included? A: Create a custom template (see Custom Templates section) or request it as a feature.

Q: Does it modify my original files? A: Never. Original input files are never modified. Output goes to stdout or a new file you specify.


Ready to transform your AI output? Start with:

python output_forge.py --help

⚠️ Disclaimer

This software is provided "AS IS", without warranty of any kind, express or implied.

USE AT YOUR OWN RISK.

  • The author(s) are NOT liable for any damages, losses, or consequences arising from

the use or misuse of this software — including but not limited to financial loss, data loss, security breaches, business interruption, or any indirect/consequential damages.

  • This software does NOT constitute financial, legal, trading, or professional advice.
  • Users are solely responsible for evaluating whether this software is suitable for

their use case, environment, and risk tolerance.

  • No guarantee is made regarding accuracy, reliability, completeness, or fitness

for any particular purpose.

  • The author(s) are not responsible for how third parties use, modify, or distribute

this software after purchase.

By downloading, installing, or using this software, you acknowledge that you have read this disclaimer and agree to use the software entirely at your own risk.

DATA DISCLAIMER: This software processes and stores data locally on your system. The author(s) are not responsible for data loss, corruption, or unauthorized access resulting from software bugs, system failures, or user error. Always maintain independent backups of important data. This software does not transmit data externally unless explicitly configured by the user.


Support & Links

🐛 Bug ReportsTheShadowyRose@proton.me
Ko-fiko-fi.com/theshadowrose
🛒 Gumroadshadowyrose.gumroad.com
🐦 Twitter@TheShadowyRose
🐙 GitHubgithub.com/TheShadowRose
🧠 PromptBasepromptbase.com/profile/shadowrose

*Built with OpenClaw — thank you for making this possible.*


🛠️ Need something custom? Custom OpenClaw agents & skills starting at $500. If you can describe it, I can build it. → Hire me on Fiverr

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

85.65%
按下载量换算2,323

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install output-forge 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills