m2w AGENTS.md

m2w AGENTS.md is an instructions file for Codex, OpenCode from huangwb8/m2w. It costs 2,927 tokens per session, scanned A, original, MIT.

Project instructions for m2w, a tool that converts local Markdown files into WordPress posts. WordPress is software for publishing and managing websites.

In plain words
What is it for?
Use it when developing, configuring, or testing bulk Markdown uploads and updates to one or more WordPress sites.
Why use it?
It explains the required setup, configuration, publishing methods, and testing rules before changing the project.

Instructions file for CodexOpenCode

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/huangwb8/m2w/agents-md
Clone the repo
git clone --depth 1 https://github.com/huangwb8/m2w

Made for: Codex, OpenCode.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for m2w AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/huangwb8/m2w/agents-md.svg)](https://agentmods.dev/instructions/huangwb8/m2w/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/huangwb8/m2w/agents-md"><img src="https://agentmods.dev/badge/instructions/huangwb8/m2w/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 2,927 This file is loaded in full into every session.
When invoked 2,927 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.02927 $0.02927
Opus 5 $0.01463 $0.01463
Sonnet 5 $0.00585 $0.00585
Haiku 4.5 $0.00293 $0.00293

Measured 3d ago against content hash c53045f4abc6, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

m2w AGENTS.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

AGENTS.md · 320 lines

How it starts

The opening of the file, as written. The whole thing — 320 lines — stays where its author put it; the contents beside it link to each section on GitHub.

m2w: Markdown to WordPress - 项目指令

项目目标

m2w 是一个将本地 Markdown 文章批量上传或更新到 WordPress 的工具。

核心特性

  • 支持两种模式:REST API(推荐)和传统 XML-RPC 密码模式
  • 异步批量上传/更新文章
  • 支持分类、标签、文章状态等元数据配置
  • 自动检测 Markdown frontmatter 并合并到 WordPress 字段

项目定位

环境要求

  • Python 版本:>= 3.7.6
  • 核心依赖(见 setup.py):
    • python-frontmatter:解析 Markdown frontmatter
    • markdown:Markdown 转 HTML
    • httpx:异步 HTTP 客户端
    • python-wordpress-xmlrpc:传统 XML-RPC 支持

本地开发安装

pip install -e .

配置要点

主配置文件

运行前需准备 config/user.json,可包含多个站点配置。

配置结构

{
    "站点域名": {
        "domain": "https://example.com",
        "username": "用户名",
        "application_password": "WordPress 应用密码",
        "path_markdown": ["本地 Markdown 目录路径"],
        "post_metadata": {
            "category": ["分类"],
            "tag": ["标签"],
            "status": "publish"
        },
        "path_legacy_json": "可选:历史 JSON 文件路径"
    }
}

配置自动生成

m2w/config/config.py 在缺失配置时会自动生成模板并退出,提醒用户补全。

测试配置

@test/config/user.json 是实际可用的测试配置示例。

重要提示

  • 该文件包含真实凭证,仅供本地演示使用
  • 请勿外泄或对生产站点直接运行
  • 所有新优化的 m2w 代码,都要在 @test 里通过测试才可以交付

常用命令

基本使用

# 运行主程序
python myblog.py

# 或在自定义脚本中调用
from m2w import up
up.run()

构建与发布

# 生成发布包
python setup.py sdist bdist_wheel

# 本地验收安装
pip install ./dist/m2w-<ver>.tar.gz

# 发布到 PyPI(参考 setup.py 顶部注释)
twine upload dist/*<ver>*

验证策略

当前状态:暂无自动化测试

手动测试流程

  1. 使用 @test/myblog-test.py 进行演练
  2. 使用 @test/main 内的 Markdown 文件测试
  3. 检查 WordPress 站点文章状态

注意事项

  • 测试会实际请求目标站点
  • 务必使用测试站点/测试凭证
  • 变更上传逻辑后建议手动跑一次完整流程

版本管理

版本号同步

修改版本号需同时更新:

Read the full file on GitHub · 320 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 320 lines · 2,927 tokens per session scan A c53045f4abc6

Subscribe to this mod's changes

m2w AGENTS.md is an instructions file published in the GitHub repository huangwb8/m2w (44 stars, last pushed 7mo ago), licensed MIT. It adds 2,927 tokens to every session, about $0.0146 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.