khlilo

Style Decoder v1.0(认知盗火者)

2026-03-20
RustTokioReqwestLLM API

文章风格逆向工程 CLI 工具,输入 URL 十维解析写作风格

拒绝盲目调参,直接逆向提取顶尖创作者的认知骨架。

痛点与真相

你是否厌倦了 AI 写出的文章总是充斥着"众所周知"、"不可否认"、"值得注意的是"这种令人作呕的塑料味?

顶级文章的魅力,从来不在于华丽的辞藻,而在于其底层的认知架构情绪基调思维节奏

style-decoder 是一个由纯 Rust 编写的极简 CLI 工具。它能在 3 秒内,强行穿透网页的动态渲染限制,将任何一篇顶级爆款文章,逆向剥离成大模型可以直接理解的 10 维度 System Prompt(风格复刻指令)

这是给 AI 时代超级个体的物理外挂。

核心火力

  • 降维抓取:底层接入 Jina Reader API,直接绕过复杂的前端反爬机制,提取纯净文本。
  • 十维逆向解析:自动分析目标文章的逻辑骨架、情绪基调、排比频率、隐喻习惯等 10 个核心维度。
  • 一键转化为武器:输出的结果不是分析报告,而是直接可以喂给大模型的 System Prompt
  • 极客级性能:Rust 编译,单文件极速运行,零臃肿依赖。

零门槛极速上手

无需懂代码,无需配置 Rust 环境,开箱即用:

  1. 下载程序:前往 Releases 页面,下载适合你系统的最新版本二进制文件。
  2. 配置大模型钥匙:在程序同一目录下新建 .env 文件,填入 LLM API 凭证:
    API_KEY=sk-or-v1-你的真实API_KEY
    BASE_URL=https://openrouter.ai/api/v1
    MODEL=anthropic/claude-3-5-sonnet-20241022
    
  3. 执行逆向提取:打开终端,运行程序并附上文章链接:
    ./style-decoder https://mp.weixin.qq.com/s/某个爆款文章链接
    

系统将自动在终端高亮输出极具深度的 Prompt,并询问你是否保存为 .md 文件。

进阶与闭环

style-decoder 仅仅是我个人自动化工作流中的一个单点探针模块

我目前构建了一套完整的 AI 认知内容生成引擎,支持:

  • 批量读取多个灵感素材(并发处理)
  • CoT(思维链)双通道渲染:先生成逻辑拓扑大纲,再进行高密度血肉填充
  • 自动化极速排版与剪贴板注入

项目链接

GitHub

Stop prompting blind. Steal the cognitive structure.

The Problem

Tired of AI-generated articles that all sound the same — "as we all know", "it's worth noting", "undeniably"?

The magic of great writing was never about fancy vocabulary. It's about the underlying cognitive architecture, emotional tone, and rhythmic flow.

style-decoder is a minimalist CLI tool written in pure Rust. In 3 seconds, it穿透 any website's dynamic rendering and reverse-engineers any top-tier article into a 10-dimension System Prompt that LLMs can directly understand.

This is a physical cheat code for super-individuals in the AI era.

Core Capabilities

  • Deep Fetch: Powered by Jina Reader API, bypassing complex anti-scraping mechanisms to extract clean text.
  • 10-Dimension Reverse Analysis: Automatically analyzes the target article's logical skeleton, emotional tone, parallelism frequency, metaphor habits, and 7 other core dimensions.
  • One-Click Weaponization: The output isn't an analysis report — it's a System Prompt ready to feed into any LLM.
  • Geek-Grade Performance: Compiled Rust, single binary, zero bloated dependencies.

Quick Start

No coding knowledge required. No Rust environment setup needed:

  1. Download: Get the latest binary from Releases.
  2. Configure: Create a .env file with your LLM API credentials:
    API_KEY=sk-or-v1-your-api-key
    BASE_URL=https://openrouter.ai/api/v1
    MODEL=anthropic/claude-3-5-sonnet-20241022
    
  3. Run: Execute with the article URL:
    ./style-decoder https://mp.weixin.qq.com/s/some-viral-article
    

The tool outputs a deeply structured Prompt in the terminal and asks if you want to save it as a .md file.

Beyond the Tool

style-decoder is just a single probe module in my personal automation workflow.

I've built a complete AI cognitive content generation engine that supports:

  • Batch processing of multiple inspiration sources (concurrent)
  • CoT dual-channel rendering: logic topology outline first, then dense content filling
  • Automated typesetting and clipboard injection

Links

GitHub