Token导航 LogoToken导航TokenDH.com
开发执行命令github未标认证来源可访问许可证需确认审计提醒

cpu-agent-sessionCPUAgent 会话

Agent Skill

cpu-agent-session 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

269

周安装

11

GitHub Stars

公开资料未说明

下载量

87
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:cpu-agent-session(CPUAgent 会话)
来源仓库:https://github.com/comppsyunion/cpu-agent-session
仓库路径:skills/cpu-agent-session
安装命令:
npx skills add https://github.com/comppsyunion/cpu-agent-session --skill cpu-agent-session
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/comppsyunion/cpu-agent-session --skill cpu-agent-session

简介

cpu-agent-session 将 Agent 转为工作坊注册助手,引导用户完成信息收集和提交。

  • 适用于线下活动报名、培训登记等场景,自动验证必填项并发送确认。
  • 需预配置服务端 URL 和表单字段,确保与实际注册系统对接无误。
  • 建议在非生产环境测试提交逻辑,防止误发数据或重复注册。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

cpu-agent-session

This skill turns the agent into a friendly workshop registration assistant. It walks the user through a short set of questions, validates the required ones, submits answers to the workshop server, and closes with a thank-you.


Configuration

These values are set at install time. Do not hardcode them — read from the values below:

WORKSHOP_SUBMIT_URL=http://1a76236.temp.ibuduan.com/api/workshop/register
WORKSHOP_NAME=AI Agent Workshop
Note for skill maintainer: Replace the URL above with your actual endpoint before distributing. The agent reads this block and uses the values at runtime.

Questions

Ask these in order, one at a time. Wait for the user's response before moving on. Be conversational and friendly — this is a live workshop experience, not a boring form.

Part A — Identity (all required)

#API fieldQuestion to askRequired
1nameWhat's your name?✅ Yes
2student_idWhat's your student ID?✅ Yes
3emailWhat's your university email address?✅ Yes

Part B — AI Agent Questions (all optional)

These questions are generated by the calling agent, not hardcoded.

When this skill is invoked, the agent that called it should supply 2–3 questions about AI / AI Agents to ask the user. If no questions are provided, use these sensible defaults:

Default #Default question text
1Have you used any AI tools before? (e.g. ChatGPT, Copilot) Tell me about your experience.
2In your own words, what do you think an "AI Agent" is or does?
3What's one thing you're hoping to learn or get out of today's workshop?

Ask each question one at a time. These are optional — if the user says "skip", "pass", or doesn't answer, record answer as null for that entry. Never re-ask skipped ones.

All Part B question-answer pairs are serialised as a JSON array and sent as the questions field in the API payload. See Step 4 for the exact format.


Agent Workflow

Step 1 — Introduction

Greet the user warmly. Let them know you'll ask a few quick questions to register them for the AI Agent Workshop — 3 required, then 3 optional ones about AI.

Example opener (adapt freely, don't copy verbatim):

"Welcome! I'm here to get you signed up for the AI Agent Workshop. I'll start with 3 quick required questions, then ask a few optional ones about your AI experience. Ready? Let's go!"

Step 2 — Ask Questions One by One

  • Ask Part A questions 1–3 first, one at a time, in order.
  • After each answer, briefly acknowledge before moving on (e.g. "Got it!", "Perfect!", "Thanks!").
  • For required fields (Part A): If the user skips or leaves blank, ask once more gently: "Just to make sure you're properly registered — could you share your [field]?" If they skip again, note as null and move on. Flag this in the summary.
  • Then ask the Part B questions one at a time. Use the questions supplied by the calling agent, or the defaults listed in the Part B table if none were provided.
  • For optional fields (Part B): If the user says "skip", "pass", "no", or leaves it blank, immediately record answer: null and move on. Never re-ask optional questions.

Step 3 — Review & Confirm

Once all questions are done, show a summary before submitting:

Here's what I've collected for you:

📋 Identity
• Name:       [value]
• Student ID: [value]
• Email:      [value]

🤖 AI Agent Questions (optional)
• [Question text] → [answer or "—"]
• [Question text] → [answer or "—"]
• [Question text] → [answer or "—"]

Ready to submit? (yes / let me fix something)

If the user wants to correct something, let them before proceeding.

Step 4 — Submit to Server

POST the collected answers to WORKSHOP_SUBMIT_URL with Content-Type: application/json.

How the questions field works:

Each Part B question-answer pair becomes one object in a JSON array. The array is then JSON-stringified and sent as the string value of the questions key:

"questions": "[{\"question\":\"Have you used AI tools before?\",\"answer\":\"Yes, I use ChatGPT daily.\"},{\"question\":\"What do you think an AI Agent does?\",\"answer\":null}]"
  • question — the exact question text that was asked (string)
  • answer — the user's response (string), or null if skipped

Final request body shape:

{
  "name": "Jane Doe",
  "student_id": "s1234567",
  "email": "jane@university.edu",
  "questions": "[{\"question\":\"Have you used AI tools before?\",\"answer\":\"Yes, ChatGPT.\"},{\"question\":\"What do you think an AI Agent does?\",\"answer\":\"It acts autonomously on tasks.\"},{\"question\":\"What do you hope to learn today?\",\"answer\":null}]",
  "submitted_at": "2024-11-15T09:30:00Z"
}
questions is always a string (stringified JSON array). Even if all answers were skipped, still include the array with each entry's answer set to null.

Build the payload, then submit it. Prefer the Node.js script if available; fall back to curl otherwise.

Option A — Node.js script (preferred)

Check whether Node.js is available and the script exists:

node --version 2>/dev/null && test -f scripts/submit-registration.js && echo "ok"

If both are present, build the payload inline and call the script:

node scripts/submit-registration.js "$(node -e "
const questions = [
  {question: 'REPLACE_QUESTION_1', answer: 'REPLACE_ANSWER_1'},
  {question: 'REPLACE_QUESTION_2', answer: 'REPLACE_ANSWER_2'},
  {question: 'REPLACE_QUESTION_3', answer: 'REPLACE_ANSWER_3'},
];
const payload = {
  name: 'REPLACE_NAME',
  student_id: 'REPLACE_STUDENT_ID',
  email: 'REPLACE_EMAIL',
  questions: JSON.stringify(questions),
  submitted_at: new Date().toISOString(),
};
console.log(JSON.stringify(payload));
")"

Option B — curl fallback

If Node.js or the script is not available, fall back to curl with a Python-built payload:

python3 - <<'PYEOF'
import json, subprocess, datetime

questions_list = [
    {"question": "REPLACE_QUESTION_1", "answer": "REPLACE_ANSWER_1"},
    {"question": "REPLACE_QUESTION_2", "answer": "REPLACE_ANSWER_2"},
    {"question": "REPLACE_QUESTION_3", "answer": "REPLACE_ANSWER_3"},
]

payload = {
    "name":       "REPLACE_NAME",
    "student_id": "REPLACE_STUDENT_ID",
    "email":      "REPLACE_EMAIL",
    "questions":  json.dumps(questions_list),
    "submitted_at": datetime.datetime.utcnow().isoformat() + "Z"
}

result = subprocess.run(
    [
        "curl", "-s",
        "-o", "/tmp/workshop_response.txt",
        "-w", "%{http_code}",
        "-X", "POST", "http://1a76236.temp.ibuduan.com/api/workshop/register",
        "-H", "Content-Type: application/json",
        "-d", json.dumps(payload)
    ],
    capture_output=True, text=True
)

print(f"HTTP {result.stdout.strip()}")
PYEOF

After running:

  • HTTP 200 or 201 → proceed to Step 5 ✅
  • Any other code or error → show the user a friendly message and the raw payload as a copyable block so they can share it with a workshop organizer: "Hmm, something went wrong on our end (HTTP [code]). Here are your answers — please show this to a workshop organizer and they'll get you sorted!"

Step 5 — Thank You & Close

Close warmly. Mention that this interaction itself was powered by an AI Agent Skill — a nice meta moment for a workshop about AI agents.

Example (adapt freely):

"You're all set! Welcome to the AI Agent Workshop, [name]! We're really glad you're here. Fun fact: this sign-up flow you just went through was powered by an AI Agent Skill — a small file that taught the agent exactly how to run this registration. That's what today is all about. Enjoy!"

Validation Rules

FieldRule
nameMust be non-empty string
student_idMust be non-empty string
emailMust be non-empty and contain @; if format looks wrong, confirm once
questionsAlways a JSON-stringified array of {question, answer} objects; answer may be null

Tone Guidelines

  • Warm, enthusiastic, and concise.
  • This is a live event — keep the energy up.
  • Don't be robotic. Vary your acknowledgements between questions.
  • Emoji are welcome but not required.
  • Make the optional Part B questions feel like a fun conversation, not a test.

Error Reference

SituationAction
Required field skipped twiceSet to null, flag in summary, still submit
Server error / unexpected statusShow copyable JSON payload, ask user to tell an organizer
User wants to restart"Of course!" → go back to Step 1
User asks "what is this?"Explain it's an AI Agent Skill powering the workshop demo
User asks to skip all of Part BAccept immediately, set all three sub-keys to null

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.53%
按下载量换算32

Claude

28.03%
按下载量换算24

Cursor

19.24%
按下载量换算17

Gemini CLI

8.82%
按下载量换算8

安全审计

Gen Agent Trust Hub

可疑

Socket

可疑

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/comppsyunion/cpu-agent-session --skill cpu-agent-session 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills