← Back to Skills Marketplace
162
Downloads
0
Stars
0
Active Installs
3
Versions
Install in OpenClaw
/install code-right-create-task
Description
创建生成软著材料生成任务:传入系统名称与接收邮箱,调用后端 API 创建任务并返回 taskId。 适用于将“创建任务”能力封装成可复用脚本,供自动化/工作流/平台集成调用。
README (SKILL.md)
\r \r
何时使用\r
\r
- 需要通过脚本创建软著材料生成任务,并传递 系统名称 与 邮箱。\r
- 需要将该能力发布到 ClawHub,供外部复用。\r \r
输入\r
\r
SYSTEM_NAME/--system-name:系统名称(必填)\rNOTIFY_EMAIL/--notify-email:接收邮箱(必填)\rACCESS_TOKEN/--access-token:可选,会作为 Headeraccess_token传入(用于同一会话下创建任务)\r \r
输出\r
\r
- 成功:打印接口返回 JSON(包含
taskId等字段)\r - 失败:返回非 0 退出码,并打印错误信息\r \r
使用方式\r
\r
Python(推荐,跨平台)\r
\r
python scripts/create_task.py \\r
--system-name "农业机械化信息网平台" \\r
--notify-email "[email protected]"\r
```\r
\r
## 发布到 ClawHub\r
\r
在包含 `SKILL.md` 的目录执行(示例):\r
\r
```bash\r
clawhub publish . --slug code-right-create-task --name "Code-Right: Create Task" --version 0.1.0\r
```\r
\r
Usage Guidance
This skill appears to do exactly what it says: POST a JSON payload (system name and notify email) to a backend and print the response. Before installing or using it, review and consider the following: 1) The script posts to http://softcraft.cloud (HTTP, not HTTPS) — data and any access_token passed will be transmitted in plaintext and could be intercepted; prefer HTTPS or change the endpoint to a trusted TLS-enabled host. 2) Confirm the destination (softcraft.cloud) is the service you intend to use and that you trust its privacy/security practices. 3) If you need to supply secret tokens, avoid passing them on command line if possible (command-line args can be visible to other local users); consider modifying the script to read a token from a secure environment variable or credential store and to use HTTPS. 4) If you need stronger assurance, run the script in an isolated environment or inspect network traffic to verify what is sent/returned. Overall the skill is internally coherent, but review the endpoint and switch to TLS before sending sensitive data.
Capability Analysis
Type: OpenClaw Skill
Name: code-right-create-task
Version: 0.1.2
The skill is a straightforward API client designed to create software copyright documentation tasks by sending a system name and email to a remote endpoint (http://softcraft.cloud). The code in `scripts/create_task.py` uses standard libraries and follows the behavior described in `SKILL.md` without any hidden logic, data exfiltration, or obfuscation. While it uses unencrypted HTTP and accepts an access token via command-line arguments (minor security risks), these are common implementation flaws rather than indicators of malicious intent.
Capability Assessment
Purpose & Capability
Name/description claim: create a task by calling a backend API. The included Python script does exactly that (POST /api/tasks with systemName and notifyEmail). No unrelated credentials, binaries, or install steps are required.
Instruction Scope
SKILL.md instructs running the provided Python script with system-name, notify-email, and optional access-token. It does not document the network destination, but the script posts to a single remote host (http://softcraft.cloud). The instructions stay within the stated purpose but omit an explicit warning that data (including any access token) is sent to that remote service.
Install Mechanism
No install spec — instruction-only with a small included script. Nothing is downloaded or written to disk by an installer; risk from install mechanism is minimal.
Credentials
No required environment variables or credentials are declared. The script accepts an optional access token via CLI argument only. The requested inputs (system name, email, optional token) are proportionate to the described functionality.
Persistence & Privilege
Skill is not always-included, does not modify other skills or system settings, and has no persistent/background components. It merely performs a one-time network request when run.
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install code-right-create-task - After installation, invoke the skill by name or use
/code-right-create-task - Provide required inputs per the skill's parameter spec and get structured output
Version History
v0.1.2
- Internal code changes in scripts/create_task.py to improve script stability or maintainability.
- No changes to usage, input, or output.
- Documentation remains unchanged.
v0.1.1
- Minor internal update to scripts/create_task.py; no user-facing changes.
- Documentation and usage instructions remain unchanged.
v0.1.0
Initial release of 软著材料生成 (“Software Copyright Material Generation”) skill.
- Adds a command-line script to create generation tasks by providing system name and notify email.
- Returns task ID and result info via JSON output.
- Supports optional access token for session-based task creation.
- Designed for easy integration into automation workflows and ClawHub platform.
Metadata
Frequently Asked Questions
What is 生成软著材料?
创建生成软著材料生成任务:传入系统名称与接收邮箱,调用后端 API 创建任务并返回 taskId。 适用于将“创建任务”能力封装成可复用脚本,供自动化/工作流/平台集成调用。 It is an AI Agent Skill for Claude Code / OpenClaw, with 162 downloads so far.
How do I install 生成软著材料?
Run "/install code-right-create-task" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is 生成软著材料 free?
Yes, 生成软著材料 is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does 生成软著材料 support?
生成软著材料 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created 生成软著材料?
It is built and maintained by ziyiyu (@ziyiyu); the current version is v0.1.2.
More Skills