用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/expectedparrot/vernon --skill coop-publishing命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | coop-publishing |
| description | Saving EDSL objects locally and publishing them to Coop (Expected Parrot's servers). |
How to persist EDSL objects locally and share them via Coop (Expected Parrot's servers).
The object itself is defined in another Python file e.g.,
study_survey.py or study_agent_list.py
"public", "private", or "unlisted"For 3:
from study_survey import survey as obj
obj.push(
visibility="unlisted",
description="<paragraph description based on user's descriptive name>",
alias="<valid-url-slug-from-descriptive-name>"
)
After pushing, print the results so the user can see them (URL, alias, visibility).
us-senators-2024If the push fails (e.g., alias already taken), update the alias or description and retry.
| Task | Method |
|---|---|
| Save locally | obj.save('filename') |
| Push to Coop | obj.push(visibility=..., description=..., alias=...) |
| Visibility options | "public", "private", "unlisted" |
Patterns for creating EDSL AgentLists from various sources: lists, CSV, Excel, DataFrame, and programmatic combinations.
Templates for the standard EDSL study files: survey, scenarios, agents, models, and create_results.py.
Error logging protocol using append-only JSONL format (errors.jsonl).