一键导入
skill-builder
Author and edit Palvia skills directly via the fs.* bridge. Includes scaffolding, tool/script generators, validation, and reference examples.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Author and edit Palvia skills directly via the fs.* bridge. Includes scaffolding, tool/script generators, validation, and reference examples.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Systematic research methodology with source evaluation and synthesis
Advanced file operations: copy, move, directory management, rich stat
Advanced Apple Health metrics: blood pressure, glucose, oxygen, body temperature, macronutrients, workouts
| name | Skill Builder |
| description | Author and edit Palvia skills directly via the fs.* bridge. Includes scaffolding, tool/script generators, validation, and reference examples. |
| palvia | {"version":"1.0","tags":["meta","authoring","scaffolding"]} |
Use this skill when the user asks you to create, modify, or fork an Palvia
skill. Palvia skills are directories under /skills/<slug>/ that you author
through the fs.* bridge — there are no create_skill/edit_skill LLM tools.
The canonical structure is documented in references/example-tooled.md.
fs.list('skills') and list_skills. Slugs are stable identifiers —
renaming a slug breaks any agent that has the skill installed.skill_skill_builder_scaffold(slug, name, description, tags?) —
writes a minimal valid SKILL.md plus empty tools/ and scripts/
directories in one shot.skill_skill_builder_add_tool(slug, tool_name, description, parameters?).
It writes tools/<tool_name>.js with the META declaration prefilled and
a TODO body. Replace the body with fs.writeFile.run_snippet-callable helper, call
skill_skill_builder_add_script(slug, script_name, description). Same
pattern: writes a skeleton you replace via fs.writeFile.validate_skill(slug=...) runs the same Swift-side
parser the auto-reload path uses. Fix every error before installing;
warnings are advisory.install_skill(name=<frontmatter name>). Palvia materializes
a Skill row from the on-disk package and binds it to the current
agent. Custom tools immediately become available as skill_<slug>_<tool>.fs.readFile('skills/<slug>/SKILL.md') to avoid
destructively rewriting unrelated content.fs.writeFile('skills/<slug>/...'). Auto-reload runs against
the modified package on success; if the rewrite breaks parsing, the last
good version of the skill keeps running until you fix the package.validate_skill(slug=...) after every batch of edits.Built-in skills (under slugs in BuiltInSkills.shippedSlugs) are read-only.
Fork before editing:
fs.cp('skills/deep-research', 'skills/my-research', { recursive: true });
The copy lives in <Documents>/Skills/ and is fully writable. Edit, validate,
and install_skill as usual.
Writes under /skills/<slug>/ require the fs_skill_write per-agent
permission in addition to whatever permission the action itself needs (e.g.
files.writeFile). Agents without fs_skill_write can still read packages
and use installed skills — they just can't author or modify them.
references/example-simple.md — a prose-only skill with no tools or scripts.references/example-tooled.md — a skill with one tool and one script.