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

hackathon-code-implementer黑客马拉松代码实现者

Agent Skill

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

总安装

605

周安装

26

GitHub Stars

1

下载量

212
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

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

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

SKILL.md

hackathon-code-implementer

Goal

Provide structured implementation guidance for a hackathon project task, including code patterns, integration strategies, and shortcuts appropriate for prototype speed.


Trigger Conditions

Use this skill when:

  • A specific task from hackathon-task-planner is about to be implemented
  • Implementation guidance, code scaffolds, or shortcut patterns are needed
  • A developer is blocked and needs a concrete starting point
  • The task budget needs to be assessed for [HIGH-RISK] overrun potential
  • Invoked once per task; iterate through the full task list from hackathon-task-planner

Inputs

InputTypeRequiredDescription
task_titlestringYesTask being implemented (from hackathon-task-planner)
task_descriptionstringYesDetailed description of what the task must achieve
tech_stackstring[]YesTechnologies in use
mvp_demo_flowobject[]YesDemo flow steps from hackathon-scope-cutter
time_budget_hoursnumberYesHours allocated to this task
existing_code_contextstringNoRelevant existing code snippets or file structure
fake_okbooleanNoWhether hardcoded/simulated data is acceptable (default: false)

Outputs

OutputDescription
implementation_planOrdered list of sub-steps to complete the task
code_scaffoldsKey code snippets, patterns, or stubs to start from
integration_pointsWhere this task connects to other components
shortcutsHackathon-appropriate shortcuts (mocks, hardcoding, libraries)
gotchasCommon failure modes to avoid
done_criteriaConditions that signal the task is complete

Rules

  1. Prioritize working code over clean code; note tech debt explicitly.
  2. Recommend existing libraries over custom implementations whenever possible.
  3. If fake_ok is true, provide mock/stub patterns alongside real implementations.
  4. Keep code_scaffolds minimal — entry points only, not full implementations.
  5. done_criteria must be observable and verifiable within time_budget_hours.
  6. Flag any sub-step that risks taking longer than 50% of time_budget_hours as [HIGH-RISK].
  7. Do not generate production-quality architecture; optimize for demo completeness.

Output Format

implementation_plan:
  - step: <number>
    action: "<what to do>"
    risk: "<[HIGH-RISK]|normal>"

code_scaffolds:
  - label: "<purpose>"
    language: "<language>"
    snippet: |
      <code>

integration_points:
  - component: "<name>"
    connection: "<how this task connects>"

shortcuts:
  - shortcut: "<description>"
    trade_off: "<what is sacrificed>"

gotchas:
  - "<pitfall>"

done_criteria:
  - "<verifiable condition>"

Example

Input:

task_title: "Implement session memory read/write (T-03)"
task_description: "Store and retrieve a rolling summary of the user's emotional state across chat sessions using Redis."
tech_stack: ["Python", "FastAPI", "Redis", "OpenAI API"]
mvp_demo_flow:
  - step: 2
    action: "User describes recurring work stress"
    outcome: "AI references last week's similar conversation from memory"
time_budget_hours: 3
fake_ok: false

Output:

implementation_plan:
  - step: 1
    action: "Install redis-py; add Redis client singleton to app startup"
    risk: "normal"
  - step: 2
    action: "After each GPT-4 response, call GPT-4 to generate a 2-sentence session summary and write to Redis key user:{id}:summary"
    risk: "normal"
  - step: 3
    action: "On each new conversation, prepend the stored summary to the system prompt"
    risk: "[HIGH-RISK] — summary injection may push context window near limit; keep summary ≤100 tokens"
  - step: 4
    action: "Test by running two sessions and verifying AI references prior context"
    risk: "normal"

code_scaffolds:
  - label: "Redis memory read/write"
    language: "python"
    snippet: |
      import redis
      r = redis.Redis(host="localhost", port=6379, decode_responses=True)

      def get_memory(user_id: str) -> str:
          return r.get(f"user:{user_id}:summary") or ""

      def save_memory(user_id: str, summary: str):
          r.set(f"user:{user_id}:summary", summary, ex=86400)

integration_points:
  - component: "OpenAI chat endpoint (T-02)"
    connection: "Prepend get_memory() result to system prompt on every request"

shortcuts:
  - shortcut: "Use a single hardcoded user_id='demo' for the hackathon"
    trade_off: "No real multi-user support; acceptable for single-demo session"

gotchas:
  - "Redis not running on demo machine → add a startup health check with a clear error message"
  - "Summary growing too long → hard-cap at 150 tokens before injection"

done_criteria:
  - "Starting a new chat session shows AI referencing content from the previous session"
  - "Redis key exists and contains non-empty summary after first session ends"

Context Files

Knowledge Base

  • knowledge/hackathon-reference-architecture.md
  • knowledge/hackathon-tools.md
  • knowledge/hackathon-mvp-strategy.md
  • knowledge/hackathon-common-failures.md

Playbooks

  • playbooks/hackathon-workflow.md

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.73%
按下载量换算78

Claude

30.47%
按下载量换算65

Cursor

20.58%
按下载量换算44

Gemini CLI

9.24%
按下载量换算20

安全审计

Gen Agent Trust Hub

通过

Socket

未通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills