✅ Recipe added successfully!
📖 Recipe Details
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Name: Classic Pasta
Source: allrecipes.com
Method: firecrawl-json (credit used)
Time: 15 min prep + 20 min cook
🥘 Ingredients (4 servings)
• 1 lb pasta
• 2 cups marinara sauce
• 1/2 cup parmesan
🔪 Steps
1. Boil water...
Searching Recipes
plan2meal search pasta
Creating a Grocery List
plan2meal list-create Weekly Shopping
Adding Recipe to List
plan2meal list-add <listId> <recipeId>
Recipe Limits
The free tier allows up to 5 recipes. You'll receive a warning when approaching this limit.
Authentication Architecture
How It Works
Skill Owner Setup (one-time):
Configure your Plan2Meal backend API URL in the skill
Your backend handles all OAuth (GitHub credentials configured in Convex environment variables)
Your backend is configured with the Convex URL (stays private)
End User Flow:
User sends a command (e.g., plan2meal list)
Skill responds with a link to your Plan2Meal sign-in page (app.plan2meal.com/sign-in)
User clicks the link and authenticates with GitHub via your web app
Your backend (using Convex Auth) handles the GitHub OAuth flow
After successful authentication, your backend shows the user a session token
User copies the token and sends it back to Telegram (or types token: <token>)
Skill validates the token with your backend and stores it securely
Backend Processing:
Your Plan2Meal backend uses Convex Auth with GitHub provider
GitHub OAuth credentials are stored in Convex environment variables (never exposed)
After GitHub auth, backend generates a session token for the user
Skill sends session token to your backend API for all requests
Your backend validates the token and makes Convex API calls on behalf of the user
Convex URL is never exposed to users or the skill
Key Points
Public Skill: No secrets in the skill - safe to publish on ClawdHub
Backend OAuth: All OAuth credentials (GitHub, Convex) stay in your backend
User Identification: Your backend maps session tokens to Convex users internally
Privacy: Convex URL stays private in your backend only
Security: Session tokens are validated with your backend before use
License
MIT
1---2name: plan2meal3description: Plan2Meal Skill4---56# Plan2Meal Skill78A ClawdHub skill for managing recipes and grocery lists via Plan2Meal, a React Native recipe app.910## Features1112- **Recipe Management**: Add recipes from URLs, search, view, and delete your recipes13- **Grocery Lists**: Create and manage shopping lists with recipes14- **Backend Authentication**: Secure authentication via Plan2Meal web app (no secrets in skill)15- **Recipe Extraction**: Automatically fetch recipe metadata from URLs16- **Telegram Formatting**: Pretty-printed output for Telegram1718## Setup19201. Install via ClawdHub:21 ```bash22 clawdhub install plan2meal23 ```24252. Configure environment variables:26 ```bash27 cp .env.example .env28 # Edit .env with your credentials29 ```30313. Required environment variables:32 - `PLAN2MEAL_API_URL`: Your Plan2Meal backend API URL (e.g., `https://api.plan2meal.app`)3334 **Optional:**35 - `PLAN2MEAL_AUTH_URL`: Custom authentication URL (defaults to `https://app.plan2meal.com/sign-in`)3637 **Important**: 38 - **Public Skill**: This skill is published on ClawdHub. No secrets are stored in the skill.39 - **Authentication**: Users authenticate via your Plan2Meal web app, then copy a session token back to Telegram.40 - **Backend Security**: All OAuth credentials (GitHub, Convex) are configured in your backend only, never exposed.4142## Commands4344### Recipe Commands4546| Command | Description |47|---------|-------------|48| `plan2meal add <url>` | Fetch recipe metadata from URL and create recipe |49| `plan2meal list` | List your recent recipes |50| `plan2meal search <term>` | Search your recipes |51| `plan2meal show <id>` | Show detailed recipe information |52| `plan2meal delete <id>` | Delete a recipe |5354### Grocery List Commands5556| Command | Description |57|---------|-------------|58| `plan2meal lists` | List all your grocery lists |59| `plan2meal list-show <id>` | Show grocery list with items |60| `plan2meal list-create <name>` | Create a new grocery list |61| `plan2meal list-add <listId> <recipeId>` | Add recipe to grocery list |6263### Help6465| Command | Description |66|---------|-------------|67| `plan2meal help` | Show all available commands |6869## Usage Examples7071### Adding a Recipe7273```74plan2meal add https://www.allrecipes.com/recipe/12345/pasta75```7677Output:78```79✅ Recipe added successfully!8081📖 Recipe Details82━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━83Name: Classic Pasta84Source: allrecipes.com85Method: firecrawl-json (credit used)86Time: 15 min prep + 20 min cook8788🥘 Ingredients (4 servings)89• 1 lb pasta90• 2 cups marinara sauce91• 1/2 cup parmesan9293🔪 Steps941. Boil water...95```9697### Searching Recipes9899```100plan2meal search pasta101```102103### Creating a Grocery List104105```106plan2meal list-create Weekly Shopping107```108109### Adding Recipe to List110111```112plan2meal list-add <listId> <recipeId>113```114115## Recipe Limits116117The free tier allows up to **5 recipes**. You'll receive a warning when approaching this limit.118119## Authentication Architecture120121### How It Works122123**Skill Owner Setup** (one-time):1241. Configure your Plan2Meal backend API URL in the skill1252. Your backend handles all OAuth (GitHub credentials configured in Convex environment variables)1263. Your backend is configured with the Convex URL (stays private)127128**End User Flow**:1291. User sends a command (e.g., `plan2meal list`)1302. Skill responds with a link to your Plan2Meal sign-in page (`app.plan2meal.com/sign-in`)1313. User clicks the link and authenticates with GitHub via your web app1324. Your backend (using Convex Auth) handles the GitHub OAuth flow1335. After successful authentication, your backend shows the user a session token1346. User copies the token and sends it back to Telegram (or types `token: <token>`)1357. Skill validates the token with your backend and stores it securely136137**Backend Processing**:138- Your Plan2Meal backend uses Convex Auth with GitHub provider139- GitHub OAuth credentials are stored in Convex environment variables (never exposed)140- After GitHub auth, backend generates a session token for the user141- Skill sends session token to your backend API for all requests142- Your backend validates the token and makes Convex API calls on behalf of the user143- Convex URL is never exposed to users or the skill144145### Key Points146147- **Public Skill**: No secrets in the skill - safe to publish on ClawdHub148- **Backend OAuth**: All OAuth credentials (GitHub, Convex) stay in your backend149- **User Identification**: Your backend maps session tokens to Convex users internally150- **Privacy**: Convex URL stays private in your backend only151- **Security**: Session tokens are validated with your backend before use152153## License154155MIT
Run npx skillmds@latest add ndesv21/plan2meal in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
Plan2Meal Skill It is listed under Coding & Dev Tools on SkillMD.
This skill has not completed SkillMD's automated safety review yet. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
ndesv21 (@ndesv21) published this skill. Their other Agent Skills are listed on their SkillMD profile.