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

hackathon-milestone-monitor黑客马拉松里程碑监控

Agent Skill

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

总安装

333

周安装

14

GitHub Stars

1

下载量

116
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

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

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

SKILL.md

hackathon-milestone-monitor

Goal

Evaluate current project progress against the planned milestone schedule, identify slippage or risk, and recommend concrete next actions to ensure the demo is ready before judging begins.


Trigger Conditions

Use this skill when:

  • A milestone check-in is due (at 25%, 50%, 75%, or 90% of hackathon time)
  • The team is uncertain whether they are on track
  • A task has significantly overrun its time budget
  • A scope change has occurred and the plan needs to be reassessed
  • Invoked during Phase 5 (Build) at each milestone marker; re-invoke any time the critical path is threatened

Inputs

InputTypeRequiredDescription
project_titlestringYesName of the project
hackathon_duration_hoursintegerYesTotal hackathon duration in hours
elapsed_hoursnumberYesHours elapsed since hackathon start
milestonesobject[]YesMilestone plan from hackathon-task-planner
tasksobject[]YesFull task list from hackathon-task-planner
completed_tasksstring[]YesIDs of tasks marked done (e.g. ["T-01", "T-02"])
blocked_tasksobject[]NoTasks currently blocked, with reason
scope_changesstring[]NoAny features added or removed since planning

Outputs

OutputDescription
progress_reportSummary of completed work, remaining work, and overall status
current_phaseWhich workflow phase the project is currently in
milestone_statusEach milestone with its planned vs. actual completion state
critical_path_healthWhether the critical path is on track, at risk, or broken
recommended_actionsPrioritised actions to take immediately
scope_recommendationsFeatures to cut or defer if behind schedule
recommended_skillsSuggested next skills to invoke

Rules

  1. Compute percent_complete as completed_tasks / total_tasks × 100.
  2. Compute percent_time_used as elapsed_hours / hackathon_duration_hours × 100.
  3. If percent_complete < percent_time_used - 15, flag status as behind.
  4. If percent_complete > percent_time_used, flag status as ahead.
  5. Otherwise flag status as on_track.
  6. Any task on the critical path that is blocked must generate a critical recommended action.
  7. If percent_time_used > 75 and the demo flow is not yet connected end-to-end, recommend scope cuts immediately.
  8. scope_recommendations must only cut features that are not [FAKE-OK] impossible and not the wow-factor feature.

Output Format

progress_report:
  completed_tasks: <number>
  total_tasks: <number>
  percent_complete: <number>
  percent_time_used: <number>
  status: "<on_track|behind|ahead|critical>"
  summary: "<one-sentence assessment>"

current_phase: "<Phase name and number>"

milestone_status:
  - name: "<milestone name>"
    target_hour: <number>
    actual_hour: "<number or 'not yet reached'>"
    status: "<completed|on_track|at_risk|missed>"
    notes: "<context>"

critical_path_health:
  status: "<healthy|at_risk|broken>"
  bottleneck_task: "<T-XX or null>"
  description: "<what is slowing the critical path>"

recommended_actions:
  - priority: <number>
    urgency: "<immediate|this_hour|today>"
    action: "<what to do>"
    rationale: "<why this matters now>"

scope_recommendations:
  - feature: "<feature name>"
    recommendation: "<cut|defer|simplify>"
    time_saved_hours: <number>
    rationale: "<why this can be safely cut>"

recommended_skills:
  - "<skill-name>"

Example

Input:

project_title: "AnchorAI"
hackathon_duration_hours: 24
elapsed_hours: 14
milestones:
  - name: "Backend skeleton live"
    target_hour: 7
  - name: "Frontend connected"
    target_hour: 11
  - name: "Memory working"
    target_hour: 16
  - name: "Demo-ready"
    target_hour: 19
tasks:
  - id: "T-01"
    title: "Set up FastAPI and Supabase"
  - id: "T-02"
    title: "Implement OpenAI chat endpoint"
  - id: "T-03"
    title: "Implement session memory"
  - id: "T-04"
    title: "Build chat UI component"
  - id: "T-05"
    title: "Wire frontend to API"
  - id: "T-06"
    title: "Add crisis card (mocked)"
completed_tasks: ["T-01", "T-02", "T-04"]
blocked_tasks:
  - id: "T-03"
    reason: "Supabase cold-start issue unresolved; falling back to Redis"

Output:

progress_report:
  completed_tasks: 3
  total_tasks: 6
  percent_complete: 50
  percent_time_used: 58
  status: "behind"
  summary: "3 of 6 tasks done at 58% time used; session memory is blocked and the demo flow is not yet connected."

current_phase: "Phase 5 — Implementation"

milestone_status:
  - name: "Backend skeleton live"
    target_hour: 7
    actual_hour: 8
    status: "completed"
    notes: "Completed 1 hour late due to Supabase setup delay"
  - name: "Frontend connected"
    target_hour: 11
    actual_hour: "not yet reached"
    status: "at_risk"
    notes: "T-05 (wire frontend) is blocked on T-03 (session memory); UI is built but not connected"
  - name: "Memory working"
    target_hour: 16
    actual_hour: "not yet reached"
    status: "at_risk"
    notes: "T-03 is blocked; 2 hours remain before this milestone"
  - name: "Demo-ready"
    target_hour: 19
    actual_hour: "not yet reached"
    status: "at_risk"
    notes: "Only 5 hours to complete T-03, T-05, T-06 and run full demo flow"

critical_path_health:
  status: "at_risk"
  bottleneck_task: "T-03"
  description: "Session memory (T-03) is blocked; it gates T-05 (frontend wiring) which gates demo-readiness"

recommended_actions:
  - priority: 1
    urgency: "immediate"
    action: "Abandon Supabase for session memory; switch to Redis in-memory fallback — saves 1–2 hours"
    rationale: "T-03 has been blocked for >1 hour; Redis fallback was planned in risk analysis"
  - priority: 2
    urgency: "this_hour"
    action: "Start T-05 (frontend wiring) using a hardcoded stub memory response while T-03 is resolved"
    rationale: "Decouples frontend progress from memory implementation; demo flow can proceed in parallel"
  - priority: 3
    urgency: "today"
    action: "Run full demo flow end-to-end by H+16 even if memory is mocked — freeze demo path first"
    rationale: "Demo-readiness milestone at H+19 requires 3 clean end-to-end runs"

scope_recommendations:
  - feature: "Mood trend dashboard"
    recommendation: "cut"
    time_saved_hours: 3
    rationale: "Not in MVP demo flow; team is behind schedule; dashboard was already deferred"

recommended_skills:
  - "hackathon-code-implementer"
  - "hackathon-deployment-prep"

Context Files

Knowledge Base

  • knowledge/hackathon-mvp-strategy.md
  • knowledge/hackathon-common-failures.md
  • knowledge/hackathon-winning-patterns.md

Playbooks

  • playbooks/hackathon-workflow.md
  • playbooks/24h-hackathon-playbook.md
  • playbooks/36h-hackathon-playbook.md
  • playbooks/48h-hackathon-playbook.md

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.42%
按下载量换算40

Claude

33.79%
按下载量换算39

Cursor

17.41%
按下载量换算20

Gemini CLI

10.33%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills