Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计未展示

recipesrecipes 命令行

Agent Skill

recipes 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

123

周安装

25

GitHub Stars

公开资料未说明

下载量

270
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add andrelandgraf/fullstackrecipes --skill "recipes"

简介

发现并安装 AI 代理的技能。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

  • 适用于在多种 AI 宿主中扩展功能集合。
  • 通过命令行 npx skills add 完成安装。
  • 需确保技能与当前宿主生态兼容。
  • recipes 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

fullstackrecipes (Full Stack Recipes)

fullstackrecipes.com provides cookbooks and recipes that help build better full-stack applications with AI-powered coding agents. Recipes are atomic instructions that follow a technical writing style using imperative steps (e.g., "Create xyz", "Download abc") without "you/we" pronouns.

Terminology

  • Resources: Documents an agent can read
  • Skills: Instructions an agent always has access to, which can reference resources and other materials
  • Plugins (Claude Code): Bundled collections of skills, MCP servers, and more for distribution
  • Tools: Functions agents can call
  • Prompts: Instructions for an agent, typically linking to resources and referencing MCP servers

Content Types

Recipes

Recipes are atomic, self-contained instructions. Each recipe serves one of two purposes:

  1. Setup Instructions: Step-by-step guides to configure something in a repository
  2. Skills: Instructions that teach agents how to work with previously configured tools or features

All recipe content is stored as markdown files in the docs/recipes/ directory.

Recipe Markdown Structure

Setup Instructions use numbered step headings:

### Step 1: Install packages

### Step 2: Create the config file

### Step 3: Add environment variables

How-To Guides use descriptive section headings:

### Writing Queries

### Inserting Data

### Using Relational Queries

Common sections (include when applicable):

  • ## File Structure - Show the resulting directory layout after setup
  • ## Usage - Provide common usage patterns and examples
  • ## References - Link to external documentation at the end

Use horizontal rules (---) to separate major sections.

Code Block Formatting

When a code block represents file content, the first line must be a comment with the file path:

// src/lib/example/config.ts
import { something } from "./somewhere";

export const config = { ... };

This convention helps agents understand which file to create or modify. Use the appropriate comment syntax for the language (// for TypeScript/JavaScript, # for shell scripts, etc.).

Language tags by content type:

  • typescript / ts / tsx - TypeScript/React code
  • bash - Terminal commands
  • env - Environment variable examples
  • json - Configuration files (no file path comment needed for snippets)

Writing Conventions

  • Use imperative steps: "Create the config file" not "You should create..."
  • Avoid "you/we" pronouns throughout
  • Use > blockquotes for Notes and Tips: > **Note**: This requires...
  • Cross-reference other recipes with relative links: [Environment Variable Management](/recipes/env-management)

Recipe Metadata (data.tsx)

Each recipe in /src/lib/recipes/data.tsx requires:

  • slug - URL-safe identifier matching the markdown filename (without .md)
  • title - Display name
  • description - One-sentence summary
  • tags - Array containing one of: "Setup Instructions", "Skills", "Cookbooks", or "Starter template"
  • icon - Lucide icon component
  • previewCode - Representative code snippet for OG images (no file path comments)

Optional fields:

  • requires - Array of prerequisite recipe slugs
  • registryDeps - Array of shadcn registry item names from registry.json
  • isCookbook / recipes / template / githubUrl - For cookbooks only

Cookbooks

Cookbooks bundle multiple related recipes together, walking an agent through several setup guides and skills in sequence. For example, the "Base App Setup" cookbook includes recipes for setting up a base application with Next.js, Shadcn UI, Neon Postgres, Drizzle ORM, and AI SDK.

Usage

  1. Discover recipes and cookbooks of interest
  2. Copy markdown content manually and pass to a coding agent, or
  3. Install the MCP server to access recipes programmatically

Recipes can be selected and copied as markdown or accessed as MCP resources. Cookbooks can also be installed as Claude Code Plugins.

Repository Structure

All metadata for recipes and cookbooks is stored in /src/lib/recipes/data.tsx.

Some code utilities are exposed through the shadcn registry stored in /registry.json. Run bun run registry:build to build the registry and generate files in public/r/.

Demo Application

This repository includes a demo application that showcases the recipes and cookbooks in action. The demo app verifies guides are complete and accurate.

Important: Keep the demo app synchronized with the recipes and cookbooks. Code should ideally match 1-to-1 between recipes and the demo app.

Exceptions:

  • Recipe code examples may include comments not present in the demo app
  • Recipes may omit code that is implemented in later recipes

Always highlight discrepancies between recipe and demo code to determine what is out of sync (stale demo code or stale recipe examples).

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

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

平台分布

OpenCode

30.03%
按下载量换算81

Cursor

19.95%
按下载量换算54

Codex

15.36%
按下载量换算41

roo

12.68%
按下载量换算34

Claude Code

7.36%
按下载量换算20

Antigravity

3.3%
按下载量换算9

安全审计

暂无安全审计结果可展示。

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills