AI студия Владимира Ломтева
УСЛУГИПРОЕКТЫСТАТЬИБАЗА ЗНАНИЙМаркетплейсПолезные сервисы

Оставьте заявку,
чтобы обсудить проект

Напишите ваш вопрос, не забудьте указать телефон. Мы перезвоним и все расскажем.

Контакты

Москва

Работаем по всей России
и миру (онлайн)

+7 (999) 760-24-41

Ежедневно с 9:00 до 21:00

lamooof@gmail.com

По вопросам сотрудничества

TelegramWhatsApp

Есть предложение?

Напишите нам в мессенджеры

© 2025 AI студия Владимира Ломтева

Политика конфиденциальностиСогласие на обработку ПДн|ИНН 623412173261
    Remove Ai Style — Скилл для ИИ-агентов | AI Рассвет

    Remove Ai Style

    Aggressively rewrite Chinese or English prose to remove AI generated patterns. Use for de AI polishing, natural language rewrites, robotic or formulaic writing, and publication cleanup. Always run the bundled deterministic Markdown analyzer first, remove every editable exclamation mark, dash, and formulaic binary contrast, inspect every other reported location, then read the full article for semantic patterns the rules cannot enumerate.

    Скиллы для операций#GitHub#zc277584121/marketing-skills#skills.sh
    Скачивания
    0
    В избранном
    0
    Комментарии
    0
    Просмотры
    2

    Установить скилл

    Добавьте инструмент одной командой или скачайте проверенный архив версии.

    npx skills add zc277584121/marketing-skills --skill remove-ai-style
    Скачать ZIP
    Версия
    1.0.0+959680e17acf
    Автор
    Владимир Ломтев
    Репозиторий
    zc277584121/marketing-skills
    GitHub: zc277584121/marketing-skills

    Как установить

    1. 1Скопируйте команду из блока установки.
    2. 2Запустите её в терминале из каталога проекта.

    Документация

    Remove AI Style

    Use a two-layer workflow:

    1. Run the deterministic analyzer to locate repeatable lexical, punctuation, structural, and assistant-residue signals.
    2. Read the full article and make contextual judgments that rules cannot cover.

    Apply one strong default. Fix confirmed findings at every severity, rewrite awkward passages, and remove unflagged formulaic rhythm while preserving facts, meaning, required structure, and the author's intended voice. Do not ask the user to choose an intensity and do not offer light, moderate, heavy, or full modes.

    Most analyzer hits still require contextual judgment. Three rule families are hard publication constraints in editable prose:

    • Remove all exclamation marks.
    • Remove all em dashes, en dashes, and double hyphens used as dashes.
    • Rewrite all formulaic binary contrasts, including “不是……而是……”, “并非……更是……”, “看似……其实……”, “not just X but Y”, and close variants, as direct claims.

    The post-edit analyzer counts for zh-exclamation or en-exclamation, zh-dash or en-dash, and zh-binary-contrast or en-binary-contrast must be zero. The only exceptions are protected regions such as code, URLs, Markdown targets, and source text that must remain verbatim. Do not treat brand enthusiasm, casual tone, or a writer's habitual punctuation as reasons to keep these patterns.

    Required workflow

    1. Determine input and language

    Prefer an absolute Markdown file path. If the user provides text only, pass it to the analyzer through stdin.

    Detect Chinese or English from the article. Override auto-detection only when the result is wrong or the user explicitly specifies a language.

    Load the matching reference completely:

    • Chinese: references/chinese.md
    • English: references/english.md

    2. Run the deterministic analyzer

    Run before editing:

    python3 <skill-root>/scripts/analyze_ai_style.py \
      <article-path> \
      --language auto \
      --format json
    

    The report contains:

    • stable finding ID
    • rule and category
    • severity
    • line and column
    • matched text
    • local context
    • suggested treatment
    • repeated-rule and document-structure summaries

    Do not replace this command with copied grep snippets. The bundled script is the single owner of deterministic detection logic.

    3. Inspect every finding

    Rewrite every editable finding from the hard-constraint rule families. Do not classify these findings as intentional or false positives merely because the usage is grammatically valid.

    Classify every other reported item as one of:

    • confirmed: rewrite it
    • intentional: keep it because the genre or voice requires it
    • protected: leave it because it belongs to code, source material, structure, or another preserved region
    • false_positive: no change
    • semantic_review: the local hit is real, but the correct fix depends on wider context

    Read the reported context, then inspect the surrounding paragraph before deciding. Do not bulk-replace phrases across the document.

    4. Read the full original article

    Always read the complete article unless the user explicitly asks to process only an excerpt. The analyzer cannot reliably detect:

    • excessive metaphors with novel wording
    • argument structure that is too symmetrical
    • repeated paragraph logic with different vocabulary
    • synthetic emotional escalation
    • vague claims that sound polished but say little
    • reader-mind-reading and sentences that digest the point for the reader
    • empty evaluative adjectives such as “很清晰” or “很重要”
    • claims that announce importance without a mechanism, number, or example
    • genre mismatch
    • flattened author voice
    • suspicious facts or citations

    Use the language reference to perform this semantic pass. The report is a navigation aid, not a substitute for reading.

    5. Record protected structure

    Before editing, record the structures that must survive:

    • YAML frontmatter
    • fenced code blocks
    • Markdown tables when their structure is intentional
    • images and links
    • HTML comments
    • complete VISUAL_TODO blocks
    • quoted source material and citations

    Do not change facts, numbers, URLs, code, image paths, TODO IDs, or citation targets merely to make prose sound more natural.

    6. Rewrite aggressively

    Make contextual edits rather than phrase substitution:

    • Prefer concrete subjects, actions, mechanisms, and results. Lead with the fact, then the judgment; do not add emphasis that the evidence already carries.
    • Remove meta-writing, reader-mind-reading, generic importance claims, empty evaluative adjectives, assistant residue, and decorative transitions.
    • Vary rhythm only where the current rhythm feels artificial; do not add slang, mistakes, or random fragments to imitate a human.
    • Preserve deliberate voice, technical precision, and genre-appropriate structure. Judgments may sit next to narrative, but each judgment should rest on a fact or mechanism.
    • Drive confirmed findings down as far as the material allows. The hard-constraint rule counts must reach zero outside protected regions.

    When invoked as a Subagent on a file, edit the file directly, then return a concise change report. Do not delegate the rewrite to another agent.

    7. Run the analyzer again

    After editing, rerun the same command and compare before/after summaries.

    Use the hard-constraint gate for the final rescan:

    python3 <skill-root>/scripts/analyze_ai_style.py \
      <article-path> \
      --language auto \
      --format json \
      --fail-on-hard-constraints
    

    Exit status 2 means at least one exclamation mark, dash, or formulaic binary contrast remains in scanned prose. Rewrite it unless inspection confirms that the match belongs to source text that must remain verbatim.

    Review every remaining finding individually. A remaining non-hard-constraint hit is acceptable when it is intentional, protected, required for accuracy, or a documented false positive. A remaining hard-constraint hit is acceptable only when it is protected or must remain verbatim.

    Finally, read the full revised article once more for continuity and voice. A lower finding count does not prove the rewrite is good.

    Completion report

    Return:

    • language
    • before/after finding counts by severity
    • confirmation that the hard-constraint rule counts reached zero, or an exact list of protected verbatim exceptions
    • confirmed rules addressed
    • intentional or protected findings left in place
    • important semantic changes found only by full reading
    • confirmation that protected Markdown structures survived
    • any factual or citation issue that needs human verification

    Требования и возможности

    Источник пакета
    https://github.com/zc277584121/marketing-skills/tree/959680e17acfa4474639c7a9abf77340399ebfb6/skills/remove-ai-style

    Файлы версии

    ПутьРазмерSHA256
    SKILL.md7181e099a97fdb1995ce...
    references/chinese.md6090f32c7f0ba2e29962...
    references/english.md6088e709b5d3eb49faac...
    scripts/analyze_ai_style.py307029d8eae906ec3d5a8...

    Частые вопросы

    Как установить Remove Ai Style?
    Используйте команду npx skills add zc277584121/marketing-skills --skill remove-ai-style или скачайте ZIP-архив.
    Можно ли скачать Remove Ai Style бесплатно?
    Да, опубликованную версию можно скачать из маркетплейса бесплатно.

    Похожие инструменты

    Смотреть все
    Story Long Write长篇网文写作。从大纲到正文,辅助长篇网络小说的创作,包括世界观、人物、情节线管理。触发方式:/story-long-write、/写长篇、「帮我开书」「写大纲」「日更」「续写」「继续写」「修改第X章」「回炉」「重写第X章」。Parallel Deep ResearchONLY use when user explicitly says 'deep research', 'exhaustive', 'comprehensive report', or 'thorough investigation'. Slower and more expensive than parallel-web-search. For normal research/lookup requests, use parallel-web-search instead. Supports multi-turn: pass --previous-interaction-id from a prior research or enrichment to continue with context.LangfuseInteract with Langfuse and access its documentation: tracing, monitoring, creating datasets, running experiments, and evaluating AI applications. Use when needing to (1) query or modify Langfuse data, (2) look up Langfuse documentation, concepts, integration guides, a feature or SDK usage, or (3) do any AI engineering task (AI observability, prompt engineering/management, evaluation and evaluator management, experimentation, dataset management, evaluation-driven CI/CD, feedback collection). Invoke it for tasks in this scope even when Langfuse is not configured or explicitly mentioned.
    Комментарии

    Войдите, чтобы оставить комментарий.

    Комментариев пока нет.

    Установить скилл

    Добавьте инструмент одной командой или скачайте проверенный архив версии.

    npx skills add zc277584121/marketing-skills --skill remove-ai-style
    Скачать ZIP
    Версия
    1.0.0+959680e17acf
    Автор
    Владимир Ломтев
    Репозиторий
    zc277584121/marketing-skills
    GitHub: zc277584121/marketing-skills
    Excel Automation>