Skylv Content Writer

v1.0.1

内容创作助手。撰写各类文案、文章、报告。使用场景:(1) 撰写技术文档,(2) 创作营销文案,(3) 写作博客文章,(4) 生成报告总结。

0· 92·1 current·1 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for sky-lv/skylv-content-writer.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Skylv Content Writer" (sky-lv/skylv-content-writer) from ClawHub.
Skill page: https://clawhub.ai/sky-lv/skylv-content-writer
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Canonical install target

openclaw skills install sky-lv/skylv-content-writer

ClawHub CLI

Package manager switcher

npx clawhub@latest install skylv-content-writer
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description (content creation: articles, docs, marketing copy) match the SKILL.md instructions; no unexpected binaries, env vars, or external services are required.
Instruction Scope
SKILL.md contains only templates, example prompts, output structure, and style guidance for writing tasks. It does not instruct the agent to read files, access system paths, or transmit data to external endpoints beyond normal agent behavior.
Install Mechanism
No install spec and no code files — nothing is written to disk or downloaded. This is the lowest-risk installation model for a skill of this type.
Credentials
No environment variables, credentials, or config paths are requested; the lack of secrets is appropriate for a writing assistant.
Persistence & Privilege
always is false and the skill does not request elevated or persistent privileges. Autonomous invocation by the agent is allowed by default and is not problematic here.
Assessment
This skill appears coherent for content writing and does not request credentials or install code. Before installing, consider: (1) validate factual claims and code examples produced (LLMs can hallucinate or produce non-working code), (2) avoid sending sensitive or proprietary data in prompts, and (3) if a future version adds install scripts, downloads, or environment variables, re-evaluate for unexpected network access or secret usage. If you need guarantees about citations or code correctness, require the skill to include explicit citation/source fields and runnable tests.

Like a lobster shell, security has layers — review code before you run it.

latestvk97c1rtebtwwv1hn34dqrzz9hx857ggs
92downloads
0stars
2versions
Updated 1w ago
v1.0.1
MIT-0

Content Writer — 内容创作助手

功能说明

根据需求创作各类文本内容。

使用方法

1. 技术文档

用户: 为这个API写一份文档:
[API描述或代码]

文档结构:

  • 概述
  • 接口列表
  • 请求/响应示例
  • 错误码说明
  • 最佳实践

2. 博客文章

用户: 写一篇关于"Python异步编程"的博客文章,1500字左右

文章结构:

  • 引人入胜的开头
  • 核心概念讲解
  • 代码示例
  • 实战应用
  • 总结

3. 营销文案

用户: 为一款AI写作工具写营销文案,目标用户是内容创作者

文案要素:

  • 痛点共鸣
  • 产品价值
  • 使用场景
  • 行动号召

4. 工作报告

用户: 根据以下数据写一份周报:
[工作数据/任务列表]

报告结构:

  • 本周完成
  • 数据亮点
  • 遇到问题
  • 下周计划

写作风格

可指定风格:

  • 正式/专业
  • 轻松/口语化
  • 技术/教程
  • 营销/说服

示例输出

# Python异步编程完全指南

## 为什么需要异步?

在传统同步编程中,当程序执行I/O操作(如网络请求、文件读写)时,
整个程序会阻塞等待操作完成。这对于高并发场景是巨大的浪费...

[继续正文]

## 快速上手

```python
import asyncio

async def fetch_data():
    # 异步获取数据
    await asyncio.sleep(1)
    return "data"

# 运行异步函数
result = asyncio.run(fetch_data())

实战案例

假设我们需要同时获取100个API的数据...

[继续正文]

总结

异步编程通过非阻塞I/O大幅提升了程序的并发处理能力...


## 注意事项

- 保持内容原创性
- 引用数据注明来源
- 代码示例确保可运行
- 适配目标读者水平

Comments

Loading comments...