@gonzih/skills-restaurant 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +44 -0
- package/install.js +15 -0
- package/package.json +28 -0
- package/skills/catering-proposal/SKILL.md +30 -0
- package/skills/menu-description-writer/SKILL.md +27 -0
- package/skills/review-response/SKILL.md +31 -0
- package/skills/staff-schedule-email/SKILL.md +30 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 gonzih
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# skills-restaurant
|
|
2
|
+
|
|
3
|
+
Claude Code skill suite for restaurant owners, managers, and chefs. Four skills, one install.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npx @gonzih/skills-restaurant
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Or install as a dev dependency and skills are copied automatically on `postinstall`:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npm install @gonzih/skills-restaurant
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
Restart Claude Code after installing.
|
|
18
|
+
|
|
19
|
+
## Skills
|
|
20
|
+
|
|
21
|
+
### `/menu-description-writer`
|
|
22
|
+
Write enticing menu descriptions for any dish. Provide the dish name, key ingredients, prep method, and any notes — get back sensory-rich copy ready for your menu.
|
|
23
|
+
|
|
24
|
+
### `/catering-proposal`
|
|
25
|
+
Generate a full catering proposal: event overview, tiered menu packages, per-head pricing, staffing plan, event-day timeline, and terms. Ready to send to clients.
|
|
26
|
+
|
|
27
|
+
### `/staff-schedule-email`
|
|
28
|
+
Produce a weekly staff schedule email with shift assignments by day and role, coverage notes, key reminders, and swap instructions.
|
|
29
|
+
|
|
30
|
+
### `/review-response`
|
|
31
|
+
Respond professionally to online reviews (Google, Yelp, TripAdvisor). Works for both positive and negative reviews — thanks the guest, addresses specifics, and invites them back.
|
|
32
|
+
|
|
33
|
+
## Usage examples
|
|
34
|
+
|
|
35
|
+
```
|
|
36
|
+
/menu-description-writer Pan-seared duck breast, cherry gastrique, roasted beets, microgreens
|
|
37
|
+
/catering-proposal Corporate dinner, 80 guests, June 14, rooftop venue, $95/head budget
|
|
38
|
+
/staff-schedule-email Week of June 9, [paste staff list and shifts]
|
|
39
|
+
/review-response [paste review text]
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
## License
|
|
43
|
+
|
|
44
|
+
MIT
|
package/install.js
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import { copyFileSync, mkdirSync, existsSync } from 'fs';
|
|
3
|
+
import { join } from 'path';
|
|
4
|
+
import { homedir } from 'os';
|
|
5
|
+
|
|
6
|
+
const skillsDir = join(homedir(), '.claude', 'skills');
|
|
7
|
+
const skills = ['menu-description-writer', 'catering-proposal', 'staff-schedule-email', 'review-response'];
|
|
8
|
+
|
|
9
|
+
for (const skill of skills) {
|
|
10
|
+
const dest = join(skillsDir, skill);
|
|
11
|
+
if (!existsSync(dest)) mkdirSync(dest, { recursive: true });
|
|
12
|
+
copyFileSync(new URL(`./skills/${skill}/SKILL.md`, import.meta.url).pathname, join(dest, 'SKILL.md'));
|
|
13
|
+
console.log(`✓ Installed /${skill}`);
|
|
14
|
+
}
|
|
15
|
+
console.log('\nSkills installed! Restart Claude Code to use them.');
|
package/package.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@gonzih/skills-restaurant",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "Claude Code skill suite for restaurant owners, managers, and chefs",
|
|
6
|
+
"main": "install.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"skills-restaurant": "install.js"
|
|
9
|
+
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"postinstall": "node install.js"
|
|
12
|
+
},
|
|
13
|
+
"keywords": [
|
|
14
|
+
"claude",
|
|
15
|
+
"claude-code",
|
|
16
|
+
"skills",
|
|
17
|
+
"restaurant",
|
|
18
|
+
"menu",
|
|
19
|
+
"catering",
|
|
20
|
+
"hospitality"
|
|
21
|
+
],
|
|
22
|
+
"author": "gonzih",
|
|
23
|
+
"license": "MIT",
|
|
24
|
+
"files": [
|
|
25
|
+
"install.js",
|
|
26
|
+
"skills/"
|
|
27
|
+
]
|
|
28
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: catering-proposal
|
|
3
|
+
description: Writes a professional catering proposal including menus, pricing, staffing, and terms.
|
|
4
|
+
triggers: ["catering proposal", "write a catering quote", "catering event proposal"]
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Catering Proposal
|
|
8
|
+
|
|
9
|
+
## What this skill does
|
|
10
|
+
Produces a polished, client-ready catering proposal covering event overview, curated menu options, per-head pricing, staffing plan, event timeline, and key terms and conditions. Output is ready to send or lightly customize before delivery.
|
|
11
|
+
|
|
12
|
+
## How to invoke
|
|
13
|
+
/catering-proposal [event type, guest count, date/time, venue, budget range, any dietary notes]
|
|
14
|
+
|
|
15
|
+
## Workflow steps
|
|
16
|
+
|
|
17
|
+
### Step 1 — Event overview
|
|
18
|
+
Summarize the event: type (wedding, corporate, birthday, etc.), date, venue, estimated guest count, and any special requirements or theme.
|
|
19
|
+
|
|
20
|
+
### Step 2 — Menu options
|
|
21
|
+
Present two or three tiered menu packages (e.g., Standard, Premium, Deluxe) with appetizers, mains, sides, and desserts. Call out dietary accommodations (vegan, gluten-free, halal) for each tier.
|
|
22
|
+
|
|
23
|
+
### Step 3 — Pricing and staffing
|
|
24
|
+
Break down cost per head for each package, including service staff count and hours, rentals (linens, serveware), setup/breakdown, and gratuity policy.
|
|
25
|
+
|
|
26
|
+
### Step 4 — Timeline and terms
|
|
27
|
+
Outline the event-day timeline (arrival, service start, last call, teardown). Include deposit amount, payment schedule, cancellation policy, and final headcount deadline.
|
|
28
|
+
|
|
29
|
+
## Example outputs
|
|
30
|
+
A structured proposal document with labeled sections, a pricing table by package tier, and a signature block for client approval.
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: menu-description-writer
|
|
3
|
+
description: Writes enticing, sensory-rich menu descriptions for restaurant dishes.
|
|
4
|
+
triggers: ["write menu description", "menu copy", "describe this dish"]
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Menu Description Writer
|
|
8
|
+
|
|
9
|
+
## What this skill does
|
|
10
|
+
Crafts compelling, sensory-rich menu descriptions that make dishes irresistible to guests. It highlights key ingredients, preparation methods, flavor profiles, and portion cues using evocative language that fits your restaurant's voice.
|
|
11
|
+
|
|
12
|
+
## How to invoke
|
|
13
|
+
/menu-description-writer [dish name, key ingredients, prep method, any notes]
|
|
14
|
+
|
|
15
|
+
## Workflow steps
|
|
16
|
+
|
|
17
|
+
### Step 1 — Gather dish details
|
|
18
|
+
Collect the dish name, star ingredients, cooking technique (grilled, braised, house-made, etc.), flavor profile, and any origin story or seasonal angle worth mentioning.
|
|
19
|
+
|
|
20
|
+
### Step 2 — Draft sensory language
|
|
21
|
+
Write 2–4 sentences leading with the most evocative element (aroma, texture, origin). Use active verbs and concrete nouns. Avoid filler words like "delicious" or "amazing."
|
|
22
|
+
|
|
23
|
+
### Step 3 — Add portion and pairing cues
|
|
24
|
+
Close with a subtle portion signal ("serves two," "small plate") or pairing suggestion (wine, beer, side) to set guest expectations and upsell naturally.
|
|
25
|
+
|
|
26
|
+
## Example outputs
|
|
27
|
+
"Slow-braised short rib, fork-tender after eight hours in a red-wine jus, arrives atop truffle-whipped Yukon Golds with a tangle of crispy shallots. Rich, deeply savory, and satisfying — best shared, but rarely is."
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: review-response
|
|
3
|
+
description: Writes professional, on-brand responses to positive and negative online reviews.
|
|
4
|
+
triggers: ["respond to review", "review response", "reply to customer review"]
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Review Response
|
|
8
|
+
|
|
9
|
+
## What this skill does
|
|
10
|
+
Crafts professional, empathetic responses to online reviews (Google, Yelp, TripAdvisor, etc.) for both positive and negative feedback. Responses thank the guest, acknowledge specific details they mentioned, address any concerns directly, and invite them back — protecting the restaurant's reputation while showing genuine care.
|
|
11
|
+
|
|
12
|
+
## How to invoke
|
|
13
|
+
/review-response [paste the review text, note sentiment: positive or negative, restaurant name optional]
|
|
14
|
+
|
|
15
|
+
## Workflow steps
|
|
16
|
+
|
|
17
|
+
### Step 1 — Identify tone and key points
|
|
18
|
+
Determine whether the review is positive, mixed, or negative. Pull out the specific details the guest mentioned (dish names, staff, wait time, ambiance) to personalize the reply.
|
|
19
|
+
|
|
20
|
+
### Step 2 — Open with a genuine thank-you
|
|
21
|
+
Start by thanking the reviewer by name (if available) and acknowledging the specific experience they described. Avoid generic openers like "Thank you for your feedback."
|
|
22
|
+
|
|
23
|
+
### Step 3 — Acknowledge and address
|
|
24
|
+
For positive reviews: reinforce what made the experience great and name the team or dish if called out.
|
|
25
|
+
For negative reviews: acknowledge the concern without being defensive, apologize sincerely for the shortfall, and briefly explain what is being done to prevent recurrence (without over-promising).
|
|
26
|
+
|
|
27
|
+
### Step 4 — Invite back
|
|
28
|
+
Close every response — positive or negative — with a warm, specific invitation to return. Offer a direct contact (manager's email or phone) for negative reviews so the conversation can move offline.
|
|
29
|
+
|
|
30
|
+
## Example outputs
|
|
31
|
+
A 3–5 sentence response that reads warm and professional, mirrors the guest's specific experience, and fits within the character limits of major review platforms.
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: staff-schedule-email
|
|
3
|
+
description: Writes a clear weekly staff schedule email with shift assignments, reminders, and swap instructions.
|
|
4
|
+
triggers: ["staff schedule email", "weekly schedule", "write schedule for staff"]
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Staff Schedule Email
|
|
8
|
+
|
|
9
|
+
## What this skill does
|
|
10
|
+
Generates a ready-to-send weekly staff schedule email that clearly lists shift assignments by day, highlights key operational reminders, flags coverage gaps or double-coverage, and tells staff exactly how to request shift swaps.
|
|
11
|
+
|
|
12
|
+
## How to invoke
|
|
13
|
+
/staff-schedule-email [week dates, staff names and roles, shift times, any reminders or special notes]
|
|
14
|
+
|
|
15
|
+
## Workflow steps
|
|
16
|
+
|
|
17
|
+
### Step 1 — Format the schedule grid
|
|
18
|
+
Lay out the week (Monday–Sunday) with each day's shifts: staff name, role (server, host, line cook, etc.), start and end times, and station or section if relevant.
|
|
19
|
+
|
|
20
|
+
### Step 2 — Add coverage and conflict notes
|
|
21
|
+
Call out any days that are understaffed, any staff member working a double, and any confirmed time-off or call-outs already accounted for.
|
|
22
|
+
|
|
23
|
+
### Step 3 — Include key reminders
|
|
24
|
+
Add 2–4 brief operational reminders relevant to the week: upcoming reservations, menu changes, side-work assignments, uniform requirements, or mandatory pre-shift meeting times.
|
|
25
|
+
|
|
26
|
+
### Step 4 — Swap and contact instructions
|
|
27
|
+
Close with clear instructions for requesting shift swaps (deadline, who to contact, approval process) and the manager's name and preferred contact method.
|
|
28
|
+
|
|
29
|
+
## Example outputs
|
|
30
|
+
A plain-text email with a day-by-day schedule table, a bulleted reminders section, and a short swap-policy paragraph — ready to paste into any email client or messaging app.
|