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

project-teacher项目老师

Agent Skill

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

总安装

706

周安装

30

GitHub Stars

2

下载量

247
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/nweii/agent-stuff --skill project-teacher

简介

project-teacher 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 适用于项目研究、信息收集和知识整理等需要精准定位的场景。
  • 通过关键词或任务描述触发检索,返回结构化候选结果供进一步处理。
  • 安装前建议确认权限范围和维护状态,注意可能涉及联网或文件读写操作。
  • 可结合来源仓库和原始 README 文档核验具体用法和功能边界。

SKILL.md

Project Teacher

Generate a detailed explanation of the current project or task, focusing on the "why" and "how" to help the user learn.

Usage

When triggered, generate a markdown file containing the learning resource.

1. Check for Existing Documents (Synchronization)

Before generating a new file, search the output directory (default: learning/) for existing documents related to the current project.

  • If a match is found: Ask the user: *"I found an existing learning doc '[Filename]'. Do you want to update it or create a new snapshot?"*
  • If User chooses Update:

1. Rename: Updates the suffix date to today's date (e.g., API_Layout - 2024-03-25.md) to reflect freshness. 2. Metadata: Update the last and commit fields in the frontmatter. 3. Content: Rewrite sections that are outdated, but preserve valuable historical context if it still applies. 4. Log: Add a line to a ## Version history section at the bottom (create one if missing).

  • If User chooses New / No match found: Create a new file.

2. Output Location

  1. Check for user preference: If the user specified a location (e.g., "save to my vault"), use that.

- Obsidian / External Vaults: If saving to an external Obsidian vault, first check its root or .cursor/ / .claude/ folders for applicable context files. These files often contain specific instructions for how to save and format notes in that system. Delegate to those instructions if they exist.

  1. Default Location: If no location is specified, use a directory named learning/ in the project root.

- Create the learning/ directory if it doesn't exist. - CRITICAL: Check if learning/ is in .gitignore. If not, add it to .gitignore to ensure these personal documents are not committed to shared repositories.

  1. File Naming: Name the file [Descriptive title] - [YYYY-MM-DD].md.

- Structure: [Topic or Component] - [Date].md. The leading part should be semantic and descriptive of *what* is being explained. - Examples: - Authentication system walkthrough - 2024-03-25.md - Recipe parser logic - 2024-03-25.md - Project Teacher overview - 2024-03-25.md

3. File Structure & Metadata Header

Use YAML frontmatter for machine-readable status, and a callout for human context.

---
last: [YYYY-MM-DD]
commit: [Current Git Commit Hash or "N/A"]
tags: [project-teacher, learning, ...]
---

# [Descriptive title in sentence case]

> [!NOTE]
> **Context**: [Brief description, e.g., "Updated after migration to v2"]
> _This document reflects the system state at the time of the last update._

## Code index
*   [MainController.ts](path/to/MainController.ts) - Handles the core logic for...
*   [UserAuth.ts](path/to/UserAuth.ts) - Manages session state.
*   [api/endpoints/](path/to/api/endpoints/) - API route definitions.

## 1. Project overview
[Explain the whole project in plain language as an expert tutor. What did we just build?]

## 2. Architecture and logic
[Use ASCII diagrams or Mermaid charts here to visualize how data flows or how components interact.]

## 3. Key technical decisions
[Explain "why" technical decisions were made.]

### Trade-offs and alternatives
[Explicitly mention what alternatives were considered and why they were rejected. e.g., "Considered using Redux, but opted for React Context because..."]

---
## Version history
*   **[YYYY-MM-DD]**: [Brief note on what changed, e.g. "Initial creation"]
*   **[YYYY-MM-DD]**: [e.g. "Updated diagram to reflect new caching layer"]

## Reflection questions
*   [Question 1 asking about a specific architectural choice]
*   [Question 2 asking about a potential edge case]
*   [Question 3 challenging the user to explain a complex part of the code]

4. Writing Style & Visuals

  • Heuristics for Headings:

- Sentence Case: Always use sentence case for headings (e.g., "Architecture and logic" NOT "Architecture And Logic"). - Descriptive: Make headings descriptive of the actual content. Instead of generic "Challenges", use "Handling concurrent requests".

  • Be Visual: Use ASCII diagrams (using code blocks) or Mermaid charts to explain complex logic, data flows, or state changes. A visual representation of *how* it works is often more valuable than text.
  • Code Index: Always include a "Code index" or "Quick links" section at the top. This allows the user to jump directly to the relevant files in their IDE.
  • Trade-offs: ALWAYS include a section on trade-offs. This is critical for deep learning.
  • Reflection: End with questions that challenge the user's understanding, but do not provide the answers.
  • Be Flexible: Do not force the explanation into a rigid template if it doesn't fit. Adapt the headers to tell the most effective learning story.
  • Expert Tutor Persona: Write as if you are explaining this to a smart colleague who wants to understand the *reasoning*, not just the lines of code.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.5%
按下载量换算90

Claude

30.23%
按下载量换算75

Cursor

18.32%
按下载量换算45

Gemini CLI

9.79%
按下载量换算24

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills