Token导航 LogoToken导航TokenDH.com
前端设计敏感数据github未标认证来源可访问许可证需确认审计通过

hackathon-repo-bootstrap黑客马拉松回购引导程序

Agent Skill

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

总安装

306

周安装

13

GitHub Stars

1

下载量

107
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

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

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

SKILL.md

hackathon-repo-bootstrap

Goal

Generate a ready-to-run project scaffold for a hackathon project, configured for the recommended stack (Next.js + Render + Supabase + LLM router), with environment variables, deployment configuration, and folder structure ready for immediate development.


Trigger Conditions

Use this skill when:

  • MVP scope is locked and the tech stack is confirmed from hackathon-task-planner
  • The team is about to begin implementation and needs a project skeleton
  • A deployment target (Vercel, Render, Railway) has been chosen
  • Environment variables and API keys need to be structured before coding begins
  • Invoked once at the start of Phase 5 (Build), immediately before the first hackathon-code-implementer call

Inputs

InputTypeRequiredDescription
project_titlestringYesName of the project (used for directory and package naming)
tech_stackstring[]YesTechnologies confirmed from hackathon-task-planner
mvp_featuresobject[]YesMVP feature list from hackathon-scope-cutter
deployment_targetsobject[]YesFrontend and backend deployment platforms
llm_providerstringNoLLM routing provider: groq, openrouter, nvidia-nim, openai (default: groq)
databasestringNoDatabase provider: supabase, postgres, sqlite, none (default: supabase)
team_sizeintegerNoNumber of team members (used to suggest monorepo vs. split repos)

Outputs

OutputDescription
directory_structureFull folder and file tree for the project scaffold
env_template.env.example content with all required environment variables
startup_commandsOrdered commands to initialise and run the project locally
deployment_configPlatform-specific deployment configuration snippets
llm_routing_scaffoldLLM client initialisation code for the chosen provider
database_scaffoldDatabase client initialisation and schema bootstrap snippet
recommended_skillsSuggested next skills to invoke

Rules

  1. Generate a monorepo structure with frontend/ and backend/ subdirectories when team_size >= 3; otherwise generate a single Next.js full-stack app.
  2. Include a README.md stub with setup instructions in the scaffold root.
  3. All API keys must appear as environment variables — never hardcoded.
  4. env_template must list every required variable with a descriptive comment.
  5. startup_commands must be executable from a clean machine with Node and Python installed.
  6. deployment_config must include both a local run config and a platform deploy config.
  7. Flag any required external service (Supabase, Groq, etc.) with a [REQUIRES ACCOUNT] note.

Output Format

directory_structure: |
  <project-name>/
  ├── frontend/
  │   ├── ...
  ├── backend/
  │   ├── ...
  └── README.md

env_template: |
  # <project-name> Environment Variables
  # Frontend
  NEXT_PUBLIC_API_URL=http://localhost:8000
  # Backend
  <VAR_NAME>=<description>   # [REQUIRES ACCOUNT]

startup_commands:
  - step: <number>
    command: "<shell command>"
    description: "<what it does>"

deployment_config:
  - platform: "<Vercel|Render|Railway>"
    file: "<config file name>"
    content: |
      <config content>

llm_routing_scaffold:
  provider: "<groq|openrouter|nvidia-nim|openai>"
  language: "<python|typescript>"
  snippet: |
    <code>

database_scaffold:
  provider: "<supabase|postgres|sqlite>"
  language: "<python|typescript>"
  snippet: |
    <code>

recommended_skills:
  - "<skill-name>"

Example

Input:

project_title: "AnchorAI"
tech_stack: ["Next.js", "FastAPI", "Supabase", "Groq"]
mvp_features:
  - feature: "GPT-4 emotional check-in conversation"
  - feature: "Session memory"
  - feature: "Crisis escalation (mocked)"
deployment_targets:
  - role: "frontend"
    platform: "Vercel"
  - role: "backend"
    platform: "Render"
llm_provider: "groq"
database: "supabase"
team_size: 3

Output:

directory_structure: |
  anchorai/
  ├── frontend/                  # Next.js 14 app
  │   ├── app/
  │   │   ├── page.tsx
  │   │   └── api/
  │   ├── components/
  │   ├── .env.local.example
  │   ├── next.config.js
  │   └── package.json
  ├── backend/                   # FastAPI service
  │   ├── main.py
  │   ├── routers/
  │   │   └── chat.py
  │   ├── services/
  │   │   ├── llm.py
  │   │   └── memory.py
  │   ├── .env.example
  │   └── requirements.txt
  └── README.md

env_template: |
  # AnchorAI — Backend Environment Variables
  GROQ_API_KEY=                  # [REQUIRES ACCOUNT] https://console.groq.com
  SUPABASE_URL=                  # [REQUIRES ACCOUNT] https://supabase.com
  SUPABASE_ANON_KEY=             # [REQUIRES ACCOUNT]
  DEMO_USER_ID=demo

  # AnchorAI — Frontend Environment Variables
  NEXT_PUBLIC_API_URL=http://localhost:8000

startup_commands:
  - step: 1
    command: "cd anchorai/backend && python -m venv .venv && source .venv/bin/activate && pip install -r requirements.txt"
    description: "Install Python dependencies"
  - step: 2
    command: "cp .env.example .env && # fill in API keys"
    description: "Configure environment variables"
  - step: 3
    command: "uvicorn main:app --reload --port 8000"
    description: "Start FastAPI backend"
  - step: 4
    command: "cd anchorai/frontend && npm install && cp .env.local.example .env.local && npm run dev"
    description: "Start Next.js frontend"

deployment_config:
  - platform: "Render"
    file: "render.yaml"
    content: |
      services:
        - type: web
          name: anchorai-api
          runtime: python
          buildCommand: "pip install -r requirements.txt"
          startCommand: "uvicorn main:app --host 0.0.0.0 --port $PORT"
          envVars:
            - key: GROQ_API_KEY
              sync: false
            - key: SUPABASE_URL
              sync: false
  - platform: "Vercel"
    file: "vercel.json"
    content: |
      {
        "env": {
          "NEXT_PUBLIC_API_URL": "@anchorai-api-url"
        }
      }

llm_routing_scaffold:
  provider: "groq"
  language: "python"
  snippet: |
    from groq import Groq

    client = Groq(api_key=os.environ["GROQ_API_KEY"])

    def chat(messages: list[dict], model: str = "llama3-70b-8192") -> str:
        response = client.chat.completions.create(
            model=model,
            messages=messages,
        )
        return response.choices[0].message.content

database_scaffold:
  provider: "supabase"
  language: "python"
  snippet: |
    from supabase import create_client

    supabase = create_client(
        os.environ["SUPABASE_URL"],
        os.environ["SUPABASE_ANON_KEY"]
    )

    def save_session_summary(user_id: str, summary: str):
        supabase.table("sessions").upsert({
            "user_id": user_id,
            "summary": summary
        }).execute()

    def get_session_summary(user_id: str) -> str:
        result = supabase.table("sessions").select("summary").eq("user_id", user_id).execute()
        return result.data[0]["summary"] if result.data else ""

recommended_skills:
  - "hackathon-code-implementer"
  - "hackathon-risk-analyzer"

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
  • playbooks/24h-hackathon-playbook.md
  • playbooks/36h-hackathon-playbook.md
  • playbooks/48h-hackathon-playbook.md

适合场景

01

调用多模型

02

代码和文本生成

03

Agent 推理流程

04

OpenRouter 模型接入

能力概览

能力 1

统一调用多种 LLM

能力 2

支持 Claude、Gemini、Kimi 等模型

能力 3

适合聊天、代码和推理任务

能力 4

可作为 Agent 模型调用入口

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

平台分布

Codex

31.38%
按下载量换算34

Claude

31.32%
按下载量换算34

Cursor

19.04%
按下载量换算20

Gemini CLI

9.06%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills