← 返回 Skills 市场
138
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install journal-cover-prompter
功能描述
Use when creating journal cover images, generating scientific artwork prompts, or designing graphical abstracts. Creates detailed prompts for AI image genera...
使用说明 (SKILL.md)
\r
Journal Cover Image Prompter\r
\r Generate detailed prompts for creating scientific journal cover images and graphical abstracts using AI image generators.\r \r
When to Use\r
\r
- Use this skill when the task needs Use when creating journal cover images, generating scientific artwork prompts, or designing graphical abstracts. Creates detailed prompts for AI image generators to produce publication-quality scientific visuals.\r
- Use this skill for academic writing tasks that require explicit assumptions, bounded scope, and a reproducible output format.\r
- Use this skill when you need a documented fallback path for missing inputs, execution errors, or partial evidence.\r \r
Key Features\r
\r
- Scope-focused workflow aligned to: Use when creating journal cover images, generating scientific artwork prompts, or designing graphical abstracts. Creates detailed prompts for AI image generators to produce publication-quality scientific visuals.\r
- Packaged executable path(s):
scripts/main.py.\r - Reference material available in
references/for task-specific guidance.\r - Structured execution path designed to keep outputs consistent and reviewable.\r \r
Dependencies\r
\r
Python:3.10+. Repository baseline for current packaged skills.\rThird-party packages:not explicitly version-pinned in this skill package. Add pinned versions if this skill needs stricter environment control.\r \r
Example Usage\r
\r
cd "20260318/scientific-skills/Academic Writing/journal-cover-prompter"\r
python -m py_compile scripts/main.py\r
python scripts/main.py --help\r
```\r
\r
Example run plan:\r
1. Confirm the user input, output path, and any required config values.\r
2. Edit the in-file `CONFIG` block or documented parameters if the script uses fixed settings.\r
3. Run `python scripts/main.py` with the validated inputs.\r
4. Review the generated output and return the final artifact with any assumptions called out.\r
\r
## Implementation Details\r
\r
See `## Workflow` above for related details.\r
\r
- Execution model: validate the request, choose the packaged workflow, and produce a bounded deliverable.\r
- Input controls: confirm the source files, scope limits, output format, and acceptance criteria before running any script.\r
- Primary implementation surface: `scripts/main.py`.\r
- Reference guidance: `references/` contains supporting rules, prompts, or checklists.\r
- Parameters to clarify first: input path, output path, scope filters, thresholds, and any domain-specific constraints.\r
- Output discipline: keep results reproducible, identify assumptions explicitly, and avoid undocumented side effects.\r
\r
## Quick Check\r
\r
Use this command to verify that the packaged script entry point can be parsed before deeper execution.\r
\r
```bash\r
python -m py_compile scripts/main.py\r
```\r
\r
## Audit-Ready Commands\r
\r
Use these concrete commands for validation. They are intentionally self-contained and avoid placeholder paths.\r
\r
```bash\r
python -m py_compile scripts/main.py\r
python scripts/main.py --help\r
```\r
\r
## Workflow\r
\r
1. Confirm the user objective, required inputs, and non-negotiable constraints before doing detailed work.\r
2. Validate that the request matches the documented scope and stop early if the task would require unsupported assumptions.\r
3. Use the packaged script path or the documented reasoning path with only the inputs that are actually available.\r
4. Return a structured result that separates assumptions, deliverables, risks, and unresolved items.\r
5. If execution fails or inputs are incomplete, switch to the fallback path and state exactly what blocked full completion.\r
\r
## Quick Start\r
\r
```python\r
from scripts.cover_prompter import CoverPrompter\r
\r
prompter = CoverPrompter()\r
\r
# Generate prompt\r
prompt = prompter.create_prompt(\r
research_topic="CRISPR gene editing",\r
visual_style="photorealistic",\r
mood="hopeful",\r
key_elements=["DNA strands", "molecular scissors", "cells"]\r
)\r
```\r
\r
## Core Capabilities\r
\r
### 1. Prompt Generation\r
\r
```python\r
prompt = prompter.generate(\r
subject="cancer immunotherapy",\r
style="scientific illustration",\r
color_scheme="blue_gradient",\r
complexity="high"\r
)\r
```\r
\r
**Prompt Structure:**\r
- Subject description\r
- Artistic style\r
- Color palette\r
- Lighting and mood\r
- Technical specifications\r
\r
### 2. Style Selection\r
\r
```python\r
style_guide = prompter.select_style(\r
journal_type="nature",\r
subject_matter="molecular_biology"\r
)\r
```\r
\r
**Journal Styles:**\r
- Nature: Dramatic, artistic\r
- Cell: Clean, molecular focus\r
- Science: Conceptual, broad appeal\r
- Medical journals: Clinical, professional\r
\r
### 3. Technical Specs\r
\r
```python\r
specs = prompter.get_specs(\r
journal="Nature",\r
cover_type="front"\r
)\r
\r
# Returns dimensions, resolution, color mode\r
```\r
\r
## CLI Usage\r
\r
```text\r
python scripts/cover_prompter.py \\r
--topic "neuroscience synaptic transmission" \\r
--style artistic \\r
--output prompt.txt\r
```\r
\r
---\r
\r
**Skill ID**: 211 | **Version**: 1.0 | **License**: MIT\r
\r
## Output Requirements\r
\r
Every final response should make these items explicit when they are relevant:\r
\r
- Objective or requested deliverable\r
- Inputs used and assumptions introduced\r
- Workflow or decision path\r
- Core result, recommendation, or artifact\r
- Constraints, risks, caveats, or validation needs\r
- Unresolved items and next-step checks\r
\r
## Error Handling\r
\r
- If required inputs are missing, state exactly which fields are missing and request only the minimum additional information.\r
- If the task goes outside the documented scope, stop instead of guessing or silently widening the assignment.\r
- If `scripts/main.py` fails, report the failure point, summarize what still can be completed safely, and provide a manual fallback.\r
- Do not fabricate files, citations, data, search results, or execution outcomes.\r
\r
## Input Validation\r
\r
This skill accepts requests that match the documented purpose of `journal-cover-prompter` and include enough context to complete the workflow safely.\r
\r
Do not continue the workflow when the request is out of scope, missing a critical input, or would require unsupported assumptions. Instead respond:\r
\r
> `journal-cover-prompter` only handles its documented workflow. Please provide the missing required inputs or switch to a more suitable skill.\r
\r
## References\r
\r
- [references/audit-reference.md](references/audit-reference.md) - Supported scope, audit commands, and fallback boundaries\r
\r
## Response Template\r
\r
Use the following fixed structure for non-trivial requests:\r
\r
1. Objective\r
2. Inputs Received\r
3. Assumptions\r
4. Workflow\r
5. Deliverable\r
6. Risks and Limits\r
7. Next Checks\r
\r
If the request is simple, you may compress the structure, but still keep assumptions and limits explicit when they affect correctness.\r
安全使用建议
This package appears coherent and low-risk: review the small scripts/main.py (it only formats and prints prompts), run the suggested sanity checks (python -m py_compile scripts/main.py and python scripts/main.py --help), and confirm you trust the unknown source before use. Because the skill's origin/homepage is not provided, consider inspecting the files locally and avoiding feeding sensitive or proprietary text into third-party image-generation services named in the tips. If you need greater assurance, ask the author for provenance or a signed release before deploying in production.
功能分析
Type: OpenClaw Skill
Name: journal-cover-prompter
Version: 1.0.0
The skill bundle is a straightforward tool for generating AI image prompts for scientific journal covers. The primary script, scripts/main.py, is a simple text-processing utility that uses argparse to generate formatted prompts and contains no dangerous system calls, network activity, or file operations. The instructions in SKILL.md and the accompanying audit metadata are consistent with the stated purpose and include appropriate error handling and boundary-setting for the AI agent.
能力评估
Purpose & Capability
Name/description, SKILL.md, and the included Python script consistently implement a prompt-generation helper for journal covers. Declared dependencies (Python 3.10+) and the packaged entry point (scripts/main.py) are appropriate for the stated task.
Instruction Scope
SKILL.md instructs the agent to validate inputs and run the bundled script; the instructions do not ask for unrelated files, credentials, or external endpoints. The script itself only formats and prints prompts and does not access network, secrets, or other system resources.
Install Mechanism
No install specification is provided (instruction-only plus a small script). This minimizes risk: nothing is downloaded or written to disk beyond running the contained Python script.
Credentials
The skill requires no environment variables, credentials, or config paths. The declared Python requirement is proportional to the packaged script.
Persistence & Privilege
always is false and the skill does not request persistent system-wide changes or modify other skills. It has no elevated privileges or autonomous persistence beyond normal agent invocation.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install journal-cover-prompter - 安装完成后,直接呼叫该 Skill 的名称或使用
/journal-cover-prompter触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release — journal-cover-prompter 1.0.0
- Introduces a skill for generating detailed, publication-quality prompts for scientific journal cover images and graphical abstracts.
- Provides workflow, input validation, output requirements, and error handling guidance to ensure reliable, reproducible results.
- Includes command-line and Python API usage examples for prompt generation, style selection, and technical specification retrieval.
- Supports structured reporting of objectives, assumptions, inputs, outputs, risks, and next steps for audit-ready usage.
- Covers fallback and input validation paths to ensure tasks are completed within defined scope and constraints.
元数据
常见问题
Journal Cover Prompter 是什么?
Use when creating journal cover images, generating scientific artwork prompts, or designing graphical abstracts. Creates detailed prompts for AI image genera... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 138 次。
如何安装 Journal Cover Prompter?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install journal-cover-prompter」即可一键安装,无需额外配置。
Journal Cover Prompter 是免费的吗?
是的,Journal Cover Prompter 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Journal Cover Prompter 支持哪些平台?
Journal Cover Prompter 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Journal Cover Prompter?
由 AIpoch(@aipoch-ai)开发并维护,当前版本 v1.0.0。
推荐 Skills