find-my-project

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Find My Project - סקיל למציאת הפרוייקט המושלם

找到我的项目 - 帮你寻找完美项目的Skill

עזרה למשתמשים למצוא את הפרוייקט האג'נטי הראשון שלהם ב-Claude Code דרך זיהוי כאבים יומיומיים
帮助用户通过识别日常痛点,在Claude Code中找到他们的第一个Agentic项目

CRITICAL: Consult claude-code-guide

重要提示:请咨询claude-code-guide

Before any significant decision, use:
Task tool with subagent_type=claude-code-guide
Example questions:
  • "What Claude Code primitives exist for [use case]?"
  • "How to structure an agentic project for [specific workflow]?"
  • "What's the difference between skills, agents, and hooks?"
在做出任何重大决策前,请使用:
Task tool with subagent_type=claude-code-guide
示例问题:
  • "针对[使用场景],Claude Code有哪些原生功能?"
  • "如何为[特定工作流]构建Agentic项目结构?"
  • "Skill、Agent和Hook之间有什么区别?"

What is an Agentic Project?

什么是Agentic项目?

Agentic project ≠ traditional code or classic automation
An agentic project is built from:
  • CLAUDE.md - Knowledge about the user and project
  • Skills - Modular capabilities the agent can invoke
  • Processes - Stacks of skills
  • Tools - Connections to external world
It is NOT:
  • ❌ React/Node.js application
  • ❌ Python script
  • ❌ Database with API
  • ❌ Zapier/Make automation
It IS:
  • ✅ Documents the agent knows how to read and update
  • ✅ Skills the agent knows how to invoke
  • ✅ Knowledge the agent uses for decisions
  • ✅ Templates the agent fills in
Agentic项目 ≠ 传统代码或经典自动化
Agentic项目由以下部分构成:
  • CLAUDE.md - 关于用户和项目的知识库
  • Skills - Agent可以调用的模块化能力
  • Processes - Skill组合栈
  • Tools - 与外部世界的连接
它不是:
  • ❌ React/Node.js应用
  • ❌ Python脚本
  • ❌ 带API的数据库
  • ❌ Zapier/Make自动化
它是:
  • ✅ Agent能够读取和更新的文档
  • ✅ Agent可以调用的Skill
  • ✅ Agent用于决策的知识库
  • ✅ Agent可填充的模板

Goal

目标

Help new Claude Code users:
  1. Identify their daily pain points
  2. Find a suitable agentic project (not code!)
  3. Set up the project structure
  4. Start with initial files
帮助Claude Code新用户:
  1. 识别日常工作痛点
  2. 找到合适的Agentic项目(而非传统代码项目)
  3. 搭建项目结构
  4. 创建初始文件

Workflow

工作流程

Step 1: Pain Point Discovery

步骤1:痛点挖掘

Ask the user about their daily work:
🎯 בוא נמצא את הפרוייקט המושלם עבורך!

ענה על כמה שאלות קצרות:

1. **מה התפקיד שלך?** (מנהל, פרילנסר, יזם, עובד...)

2. **מה הדבר שהכי מתיש אותך בעבודה?**
   - משהו שחוזר על עצמו כל יום/שבוע
   - משהו שלוקח הרבה זמן
   - משהו שאתה שוכח לעשות

3. **אילו כלים אתה משתמש הכי הרבה?**
   - אימייל, וואטסאפ, אקסל...
   - CRM, יומן, מערכות ניהול...

4. **מה היית רוצה שיעשה לבד?**
询问用户日常工作相关问题:
🎯 让我们为你找到完美的项目!

请回答几个简短问题:

1. **你的职位是什么?**(经理、自由职业者、创业者、员工...)

2. **工作中最让你头疼的事情是什么?**
   - 每天/每周重复的事情
   - 耗时很久的事情
   - 你经常忘记做的事情

3. **你最常用哪些工具?**
   - 邮件、WhatsApp、Excel...
   - CRM、日历、管理系统...

4. **你希望什么事情能自动完成?**

Step 2: Analysis and Opportunity Identification

步骤2:分析与机会识别

REQUIRED: Before continuing, consult claude-code-guide:
Use Task tool with subagent_type=claude-code-guide to ask:
"I have a user who [describe pain points]. What Claude Code primitives and project structure would be best for an AGENTIC project (not traditional code) to solve this?"
Based on responses and consultation, identify:
  • Repetitive tasks → Skills
  • Multi-step processes → Skill stacks
  • Information that needs to be available → CLAUDE.md + data files
  • External actions → Tools (MCP/API)
必须执行:在继续之前,请咨询claude-code-guide:
使用Task工具,设置subagent_type=claude-code-guide,提问:
"我有一位用户,他的痛点是[描述痛点]。针对这个场景,构建Agentic项目(非传统代码)的最佳Claude Code原生功能和项目结构是什么?"
根据反馈和咨询结果,确定:
  • 重复性任务 → 对应Skill
  • 多步骤流程 → 对应Skill组合栈
  • 需要随时可用的信息 → 对应CLAUDE.md + 数据文件
  • 外部操作 → 对应Tools(MCP/API)

Step 3: Project Proposal

步骤3:项目提案

Present the recommended project to the user:
💡 הפרוייקט המומלץ עבורך:

**שם הפרוייקט:** [appropriate name]

**מה הוא יעשה:**
- [capability 1]
- [capability 2]
- [capability 3]

**למה זה מתאים לך:**
- פותר את: [specific pain]
- חוסך: [specific benefit]

**מבנה מומלץ:**
project-name/
├── CLAUDE.md          # הידע על הפרוייקט ועליך
├── data/              # קבצי מידע (לקוחות, משימות...)
├── templates/         # תבניות (מסמכים, הודעות...)
└── .claude/skills/    # סקילים ספציפיים לפרוייקט

רוצה שאקים את התיקייה?
向用户展示推荐的项目:
💡 为你推荐的项目:

**项目名称:** [合适的名称]

**它能做什么:**
- [功能1]
- [功能2]
- [功能3]

**为什么适合你:**
- 解决:[具体痛点]
- 节省:[具体收益]

**推荐结构:**
project-name/
├── CLAUDE.md          # 关于项目和你的知识库
├── data/              # 数据文件(客户、任务...)
├── templates/         # 模板(文档、消息...)
└── .claude/skills/    # 项目专属Skill

要我帮你创建文件夹吗?

Step 4: Project Setup

步骤4:项目搭建

If user approves:
  1. Create the folder structure:
bash
mkdir -p ~/projects/[project-name]/{data,templates,.claude/skills}
  1. Create initial CLAUDE.md with:
    • User information (from questioning)
    • Project purpose
    • Basic rules
  2. Suggest data files to add:
📥 כדי שאוכל לעזור לך טוב יותר, שקול להכניס לתיקייה:

- רשימת לקוחות (אקסל/CSV/טקסט)
- דוגמאות של מסמכים שאתה שולח
- תבניות של הודעות
- כל מידע קבוע שאתה משתמש בו

אחרי שתכניס - אני אוכל לעזור לך לבנות את הסקיל הראשון!
如果用户同意:
  1. 创建文件夹结构:
bash
mkdir -p ~/projects/[project-name]/{data,templates,.claude/skills}
  1. 创建初始CLAUDE.md,包含:
    • 用户信息(来自之前的提问)
    • 项目目标
    • 基本规则
  2. 建议添加的数据文件:
📥 为了更好地帮助你,建议在文件夹中添加:

- 客户列表(Excel/CSV/文本)
- 你发送的文档示例
- 消息模板
- 你常用的任何固定信息

添加完成后,我可以帮你构建第一个Skill!

Step 5: First Skill Recommendation

步骤5:首个Skill推荐

Based on identified pains, suggest a first skill:
⚡ הסקיל הראשון המומלץ:

**שם:** [skill name]
**מה יעשה:** [short description]

רוצה שניצור אותו יחד?
Important: Before creating the skill, consult claude-code-guide:
Use Task tool with subagent_type=claude-code-guide to ask:
"How to create a skill for [specific task]? What's the best structure?"
根据识别到的痛点,推荐第一个Skill:
⚡ 为你推荐的首个Skill:

**名称:** [Skill名称]
**功能:** [简短描述]

要我帮你一起创建它吗?
重要提示:在创建Skill之前,请咨询claude-code-guide:
使用Task工具,设置subagent_type=claude-code-guide,提问:
"如何为[具体任务]创建Skill?最佳结构是什么?"

Common Project Examples

常见项目示例

For Freelancers:

针对自由职业者:

  • Client Management - quotes, contracts, tracking
  • Project Management - tasks, deadlines, reports
  • 客户管理 - 报价、合同、跟踪
  • 项目管理 - 任务、截止日期、报告

For Managers:

针对经理:

  • Weekly Reports - data collection, processing, generation
  • Team Tracking - tasks, statuses, alerts
  • 周报生成 - 数据收集、处理、生成
  • 团队跟踪 - 任务、状态、提醒

For Entrepreneurs:

针对创业者:

  • Lead Management - tracking, reminders, conversion
  • Content & Marketing - post creation, scheduling, measurement
  • 线索管理 - 跟踪、提醒、转化
  • 内容与营销 - 帖子创建、排期、效果衡量

What This Skill Does NOT Do

本Skill不提供的功能

  • Does not build classic applications (React, Node.js...)
  • Does not create databases
  • Focuses on Claude Code ecosystem: documents, skills, agents
  • 不构建经典应用(React、Node.js等)
  • 不创建数据库
  • 专注于Claude Code生态系统:文档、Skill、Agent

Consultation Tool

咨询工具

Whenever you need information about Claude Code capabilities:
Task tool with subagent_type=claude-code-guide
Example questions:
  • "What primitives exist in Claude Code for managing data?"
  • "How to create a skill that calls other skills?"
  • "What's the best way to structure CLAUDE.md?"
  • "How to create agents for background tasks?"
每当你需要了解Claude Code的功能时:
使用Task工具,设置subagent_type=claude-code-guide
示例问题:
  • "Claude Code中用于数据管理的原生功能有哪些?"
  • "如何创建一个能调用其他Skill的Skill?"
  • "CLAUDE.md的最佳结构是什么?"
  • "如何为后台任务创建Agent?"