Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计通过

hackathon-judge-simulator黑客马拉松裁判模拟器

Agent Skill

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

总安装

480

周安装

20

GitHub Stars

1

下载量

160
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:hackathon-judge-simulator(黑客马拉松裁判模拟器)
来源仓库:https://github.com/bernieweb3/hackathon-ai-devkit
仓库路径:skills/hackathon-judge-simulator
安装命令:
npx skills add https://github.com/bernieweb3/hackathon-ai-devkit --skill hackathon-judge-simulator
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/bernieweb3/hackathon-ai-devkit --skill hackathon-judge-simulator

简介

用于处理 GitHub 仓库、Issue 和 Pull Request 信息,协助代码协作与变更管理。

  • 适合在需要围绕仓库状态或代码变更进行整理时使用,支持多宿主环境。
  • 通过 npx skills add 命令从指定仓库安装,具体用法请参考原始 README。
  • 安装前应确认权限范围、维护状态,并评估是否会触发联网或文件操作。
  • 注意:避免直接执行未经验证的命令,防止误改生产环境代码。

SKILL.md

hackathon-judge-simulator

Goal

Simulate a panel of hackathon judges evaluating a project, generating likely questions, critical objections, and a predicted scoring outcome so the team can strengthen their pitch and demo.


Trigger Conditions

Use this skill when:

  • The pitch deck is drafted and the demo is recorded
  • The team needs to stress-test the pitch before live judging
  • Adversarial questions and rebuttal strategies must be prepared
  • Predicted scores reveal gaps that can be addressed before presentation
  • Invoked during Phase 7 (Evaluation); re-invoke after pitch improvements are made for a second simulation pass

Inputs

InputTypeRequiredDescription
project_titlestringYesName of the project
problem_statementstringYesThe problem being solved
solution_summarystringYesHow the project solves it
mvp_featuresstring[]YesWhat was built
tech_stackstring[]YesTechnologies used
evaluation_axesobject[]YesJudging criteria from hackathon-track-analyzer
pitch_contentstringNoDraft pitch or slide content for more targeted simulation
judge_personasstring[]NoTypes of judges expected (e.g., technical, business, domain expert)

Outputs

OutputDescription
judge_personas_usedSimulated judge types with their likely priorities
questionsExpected judge questions with recommended answers
objectionsCritical concerns judges are likely to raise
predicted_scoresScore per evaluation axis with reasoning
overall_verdictSimulated overall impression and ranking likelihood
pitch_improvementsSpecific changes to address predicted weaknesses

Rules

  1. Simulate at least 3 distinct judge personas if judge_personas is not provided.
  2. Generate at least 2 questions per evaluation axis.
  3. Include at least one question that targets a weakness in the solution.
  4. predicted_scores must use the same 1–5 scale as hackathon-idea-scoring.
  5. objections must be paired with a recommended rebuttal strategy.
  6. pitch_improvements must be actionable within the remaining hackathon time.
  7. Do not simulate only favorable outcomes; include at least one skeptical judge perspective.

Output Format

judge_personas_used:
  - persona: "<type>"
    priorities:
      - "<priority>"

questions:
  - judge_persona: "<type>"
    question: "<question text>"
    recommended_answer: "<suggested response>"
    difficulty: "<easy|medium|hard>"

objections:
  - objection: "<concern>"
    likelihood: "<high|medium|low>"
    rebuttal_strategy: "<how to address>"

predicted_scores:
  - axis: "<axis name>"
    score: <1-5>
    reasoning: "<why>"

overall_verdict:
  impression: "<string>"
  ranking_likelihood: "<top-3|mid-field|long-shot>"
  key_strengths:
    - "<strength>"
  key_weaknesses:
    - "<weakness>"

pitch_improvements:
  - issue: "<problem>"
    action: "<what to change>"
    priority: "<high|medium|low>"

Example

Input:

project_title: "AnchorAI"
problem_statement: "College students wait 6 weeks for counseling while anxiety compounds."
solution_summary: "GPT-4 companion with Redis-backed session memory for persistent emotional context."
mvp_features: ["GPT-4 check-in conversation", "Session memory", "Crisis escalation (mocked)"]
tech_stack: ["Python", "FastAPI", "React", "Redis", "OpenAI GPT-4"]
evaluation_axes:
  - axis: "Innovation"
  - axis: "Impact"
  - axis: "Technical Execution"

Output:

judge_personas_used:
  - persona: "Technical judge"
    priorities: ["Working implementation", "Appropriate tech choices", "Scalability awareness"]
  - persona: "Impact/domain judge"
    priorities: ["Real user need", "Safety guardrails", "Clinical validity concerns"]
  - persona: "Business judge"
    priorities: ["Market size", "Differentiation", "Go-to-market path"]

questions:
  - judge_persona: "Technical judge"
    question: "How does the memory actually work — what are you storing and retrieving?"
    recommended_answer: "We store a GPT-4 generated summary of each session in Redis, keyed by user ID. On the next session, we prepend that summary to the system prompt. It's simple and it works for the demo."
    difficulty: "medium"
  - judge_persona: "Impact/domain judge"
    question: "Is this safe? What happens if someone is in genuine crisis?"
    recommended_answer: "We detect distress signals and surface hotline resources immediately. We're explicit that AnchorAI is not a therapist. In the roadmap, we escalate to human counselors."
    difficulty: "hard"
  - judge_persona: "Business judge"
    question: "How is this different from Woebot or BetterHelp?"
    recommended_answer: "Woebot has no memory and uses rigid scripts. BetterHelp is $80/week. AnchorAI is the only free, always-available companion that actually knows your history."
    difficulty: "medium"

objections:
  - objection: "This could give vulnerable users dangerous advice"
    likelihood: "high"
    rebuttal_strategy: "Acknowledge directly. Explain the safety guardrails and the explicit non-therapist framing. Offer to show the crisis card in the demo."
  - objection: "Memory feature is just system prompt injection — not novel"
    likelihood: "medium"
    rebuttal_strategy: "Agree it's a simple mechanism. Pivot to impact: the novelty is the UX, not the implementation. Show the user experience, not the code."

predicted_scores:
  - axis: "Innovation"
    score: 4
    reasoning: "Memory-based continuity in mental health context is genuinely novel for a hackathon"
  - axis: "Impact"
    score: 5
    reasoning: "Large, underserved audience with real demonstrated need"
  - axis: "Technical Execution"
    score: 4
    reasoning: "Working live demo with real API integration; Redis memory functions correctly"

overall_verdict:
  impression: "Strong emotional narrative with a memorable live demo moment. Safety question will come up — being prepared for it is the difference between winning and not."
  ranking_likelihood: "top-3"
  key_strengths:
    - "Emotionally resonant problem framing"
    - "Live working wow moment (memory recall)"
    - "Clear differentiation from existing tools"
  key_weaknesses:
    - "Safety and clinical validity will be scrutinized"
    - "Business model not addressed"

pitch_improvements:
  - issue: "No mention of how AnchorAI avoids causing harm"
    action: "Add one sentence to the solution slide: 'AnchorAI is not a therapist — it's a bridge to one.'"
    priority: "high"
  - issue: "No business or monetization framing"
    action: "Add one bullet to vision slide: 'Free tier for students; licensed model for universities'"
    priority: "medium"

Context Files

Knowledge Base

  • knowledge/hackathon-judging-criteria.md
  • knowledge/hackathon-pitch-strategy.md
  • knowledge/hackathon-winning-patterns.md
  • knowledge/hackathon-demo-psychology.md

Playbooks

  • playbooks/hackathon-workflow.md

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.84%
按下载量换算54

Claude

27.7%
按下载量换算44

Cursor

19.04%
按下载量换算30

Gemini CLI

9.47%
按下载量换算15

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills