示例第三方技能

Validates skill installation and management workflows with a minimal stage template.

5|1|Updated Jul 31, 2026
One-click install
npx skills add https://github.com/shiker1996/wechat-editroom --skill skill-shiker1996
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: 示例第三方技能
Source: https://github.com/shiker1996/wechat-editroom/tree/main/docs/examples/skill-package
Command: npx skills add https://github.com/shiker1996/wechat-editroom --skill skill-shiker1996

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Developers building or testing a skill management system need a minimal, contract-compliant skill package to verify installation, discovery, and execution flows without writing a full production skill first. ## Core Features & Use Cases - Minimal Skill Template: Provides a SKILL.md with required frontmatter (name, description, version) plus a skill.json manifest declaring kind, entry points, and contracts. - Contract Declaration: Declares an input contract of fact_base and an output contract of article_markdown for the independent-writing entry point, producing article content. - Use Case: A developer integrating a skill marketplace into the 见字 workbench installs this package to confirm that third-party skills are discovered, validated against the schema, and invoked correctly in the writing stage. ## Quick Start Install this example skill package and run the independent-writing stage with a prepared fact base to verify the skill pipeline produces article markdown.

Frequently Asked Questions about 示例第三方技能

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I test a skill installation pipeline with a sample package?

Install this example skill package, which contains a valid SKILL.md and skill.json manifest. The system should discover it, validate its schema, and register it for the independent-writing entry point without additional configuration.

What files are required in a minimal skill package?

A minimal skill package requires a SKILL.md file with YAML frontmatter containing at least name and description. This example also includes a skill.json manifest declaring schemaVersion, id, kind, entryPoints, and input/output contracts.

What input does this example skill expect?

The skill declares an input contract of fact_base, meaning it expects prepared factual material provided by the calling entry point. It produces article_markdown as its output contract.

Which app versions are compatible with this skill package?

The skill.json manifest specifies compatibleApp as >=0.1.0, so any host application at version 0.1.0 or later can install and run this package.

When should I not use this example skill?

Do not use it for real content production, since it is a minimal verification template with no domain logic. Replace it with a full skill once the installation and execution pipeline is confirmed working.