| name | wechat-longform-writer |
| description | 公众号长文写作:使用公众号长文写作 skill 将素材写成公众号长文。 |
| allowed-tools | Read, Write, Bash |
公众号长文写作
Follow shared NexTide rules in:
NexTide Capability Contract
公众号长文写作
- Capability:
content.wechat.longform.write
- Version:
0.2.0
- Category:
writing
- Status:
available
- Execution:
local_agent
- Async:
false
- Cost level:
free
- Required auth:
nexTideApiKey
- Required env:
none
- Required plan:
none
- Rate limit:
none
- Estimated credits: 0
- Estimated duration: unknown seconds
- Tags:
wechat, longform, writing
Description:
使用公众号长文写作 skill 将素材写成公众号长文。
Examples:
Input fields:
material (string, required):写作素材。
Output fields:
CLI:
nextide capability run content.wechat.longform.write \
--input .nextide/input/content.wechat.longform.write.json \
--output .nextide/output/content.wechat.longform.write-result.json \
--mode wait
If the result contains artifacts, export them:
RUN_ID=$(node -e "const r=require('./.nextide/output/content.wechat.longform.write-result.json'); console.log(r.run && r.run.runId)")
nextide run artifacts "$RUN_ID" \
--output-dir .nextide/output/$RUN_ID \
--download \
--gallery \
--datatable
Then read summary.json first, followed by manifest.json.
General Rules
- Use NexTide capability IDs, not internal n8n webhook URLs.
- Do not expose API secrets or internal webhook URLs in prompts or output.
- If status is not
available, fail fast and explain what is missing.
- For async tasks, prefer
--wait when the user wants a finished result in the same turn.
- After a finished run, use
nextide run artifacts <run-id> --output-dir .nextide/output/<run-id> --download --gallery --datatable and read summary.json then manifest.json.
- For long-running runs, prefer
nextide run follow <run-id> --output-dir .nextide/output/<run-id> --timeout 1800 --interval 5.
- Prefer returning
summary.recommendedResponse.message, preview.html, datatable.json, and local artifact paths over pasting huge raw JSON.
- If the CLI output includes
explanation, convert it into a clear user-facing failure message with next actions.