Agent Skills
Meta Baseline Generator
AIPOCH
Generates a meta-analysis baseline characteristics section (text + table) from raw data. Supports Chinese and English. Use when the user provides baseline data and wants a formatted results section.
4
0
FILES
88100Total Score
View Evaluation ReportCore Capability
82 / 100
Functional Suitability
10 / 12
Reliability
9 / 12
Performance & Context
8 / 8
Agent Usability
13 / 16
Human Usability
7 / 8
Security
10 / 12
Maintainability
9 / 12
Agent-Specific
16 / 20
Medical Task
20 / 20 Passed
96Generates a meta-analysis baseline characteristics section (text + table) from raw data. Supports Chinese and English. Use when the user provides baseline data and wants a formatted results section
4/4
92Generates a meta-analysis baseline characteristics section (text + table) from raw data. Supports Chinese and English. Use when the user provides baseline data and wants a formatted results section
4/4
90Generates a meta-analysis baseline characteristics section (text + table) from raw data. Supports Chinese and English
4/4
90Packaged executable path(s): scripts/text_processor.py
4/4
90End-to-end case for Scope-focused workflow aligned to: Generates a meta-analysis baseline characteristics section (text + table) from raw data. Supports Chinese and English. Use when the user provides baseline data and wants a formatted results section
4/4
SKILL.md
Meta-Analysis Baseline Generator
This skill generates a standardized "Baseline Characteristics" section for meta-analysis papers, including a descriptive text summary and a formatted Markdown table.
When to Use
- Use this skill when you need generates a meta-analysis baseline characteristics section (text + table) from raw data. supports chinese and english. use when the user provides baseline data and wants a formatted results section in a reproducible workflow.
- Use this skill when a academic writing task needs a packaged method instead of ad-hoc freeform output.
- Use this skill when the user expects a concrete deliverable, validation step, or file-based result.
- Use this skill when
scripts/text_processor.pyis the most direct path to complete the request. - Use this skill when you need the
meta-baseline-generatorpackage behavior rather than a generic answer.
Key Features
- Scope-focused workflow aligned to: Generates a meta-analysis baseline characteristics section (text + table) from raw data. Supports Chinese and English. Use when the user provides baseline data and wants a formatted results section.
- Packaged executable path(s):
scripts/text_processor.py. - Reference material available in
references/for task-specific guidance. - Structured execution path designed to keep outputs consistent and reviewable.
Dependencies
Python:3.10+. Repository baseline for current packaged skills.Third-party packages:not explicitly version-pinned in this skill package. Add pinned versions if this skill needs stricter environment control.
Example Usage
cd "20260316/scientific-skills/Academic Writing/meta-baseline-generator"
python -m py_compile scripts/text_processor.py
python scripts/text_processor.py --help
Example run plan:
- Confirm the user input, output path, and any required config values.
- Edit the in-file
CONFIGblock or documented parameters if the script uses fixed settings. - Run
python scripts/text_processor.pywith the validated inputs. - Review the generated output and return the final artifact with any assumptions called out.
Implementation Details
See ## Workflow above for related details.
- Execution model: validate the request, choose the packaged workflow, and produce a bounded deliverable.
- Input controls: confirm the source files, scope limits, output format, and acceptance criteria before running any script.
- Primary implementation surface:
scripts/text_processor.py. - Reference guidance:
references/contains supporting rules, prompts, or checklists. - Parameters to clarify first: input path, output path, scope filters, thresholds, and any domain-specific constraints.
- Output discipline: keep results reproducible, identify assumptions explicitly, and avoid undocumented side effects.
Workflow
-
Gather Inputs: Ensure you have the following from the user:
title: The title of the meta-analysis.baseline_information: The raw baseline data (JSON, text, etc.).language: The target output language ("Chinese" or "English").
-
Generate Text Description (LLM):
- Use the "Text Description Generation" prompt in references/prompts.md.
- Input:
title,baseline_information,language. - Output: A paragraph describing the study characteristics.
-
Generate Markdown Table (LLM):
- Use the "Markdown Table Generation" prompt in references/prompts.md.
- Input:
baseline_information,language. - Output: A Markdown table wrapped in curly braces (e.g.,
{ | Table | }).
-
Process and Combine (Script):
- Run
scripts/text_processor.pyto format the final output. - The script performs the following deterministic operations:
- Inserts
(Table 1)before the last punctuation of the text description. - Cleans markdown code fences from the table output.
- Adds the standard table title and headers.
- Inserts
- Execution:
import sys sys.path.append('scripts') from text_processor import process_content final_result = process_content( text_description=step2_output, raw_table=step3_output, language=language ) print(final_result)
- Run
-
Output: Present the
final_resultto the user.
Rules
- Language Consistency: Ensure the output language strictly matches the user's request (Chinese/English).
- Citation Insertion: The citation `(Table 1) MUST be inserted before the final punctuation of the description text.
- Table Format: The table must be a standard Markdown table with a clear title.
Testing Guidelines
When testing this skill:
- Verify UTF-8 encoding: Ensure the output displays Chinese characters correctly (e.g.,
【Results】not��Results��). - Check citation placement: The citation tag should appear immediately before the final punctuation mark.
- Test edge cases:
- Empty or missing baseline fields (marked as "-" in table)
- Special characters in study names (e.g., umlauts: Lübbert → Luebbert)
- Various punctuation marks (. ! ? 。!?)
- Validate table structure: Ensure markdown table has proper column alignment (
|:---|).