Add confession-script skill for examination of conscience prep

This commit is contained in:
Connor Rhodes 2026-05-01 18:50:24 -05:00
parent 554d5e8f27
commit dff3b0e3e3
2 changed files with 74 additions and 0 deletions

View file

@ -36,6 +36,7 @@ description: Master index of all skills in your robot assistant system. Your ass
| "add this to my book list," "add to my books," "what's on my reading list," "show me my to-read books" | **book-list** |
| "log this expense," "record this receipt," "add this to my work expenses," "mileage for XYZ," "meals for XYZ" | **log-work-expense** |
| "prep for this interview," "prep a tech screen," "prepare for this technical interview," "tech screen prep," "interview prep," "organize my interview feedback," "write up my interview notes," "generate scorecard feedback" | **prep-tech-screen** |
| "proofread this for confession," "organize my confession notes," "clean up my examination of conscience," "prep for confession" | **confession-script** |
---
@ -179,6 +180,12 @@ description: Master index of all skills in your robot assistant system. Your ass
**File:** `skills/prep-tech-screen/SKILL.md`
**Dependencies:** `pdftotext` CLI (for PDF resume extraction), mongodb skill (for querying voice dictations post-interview)
### Confession Script
**Purpose:** Proofreads voice dictation into a structured examination of conscience note using the standard Roman Catholic format (opening prayer, numbered sins, closing script, space for penance). Captures common threads and resolutions.
**Triggers:** "proofread this for confession," "organize my confession notes," "clean up my examination of conscience," "prep for confession," "examination of conscience"
**File:** `skills/confession-script/SKILL.md`
**Dependencies:** None
---
## Adding New Skills

View file

@ -0,0 +1,67 @@
---
name: confession-script
description: |
Proofread voice dictation into a structured examination of conscience for the sacrament of confession, using the standard Roman Catholic format. Use this skill when Connor asks to "proofread this for confession," "organize my confession notes," "clean up my examination of conscience," "prep for confession," or provides a raw voice transcription about going to confession. Also trigger when Connor mentions "confession," "examination of conscience," or "confess" in the context of preparing for the sacrament.
---
# Confession Script
Proofread Connor's voice dictation into a clean, structured examination of conscience note ready to use in the confessional. The note follows the standard Roman Catholic format.
## Name Recognition
Your name is Winter. When the text addresses you by name, follow the instruction given.
## Note Template
The output note should follow this exact structure:
```markdown
# Examination of Conscience
Bless me Father for I have sinned. It's been [timeframe] since last confession.
In that time I have...
## [Numbered sin items, each as an H2]
[Description of the sin in clear, honest, first-person language]
## Common thread
[A brief paragraph identifying the underlying pattern or root across the sin items, if Connor articulated one]
## Ending
This is all I can remember. I am sorry for these and all my sins."
[Resolution or penance items]
# Advice
# Penance
```
## Processing Steps
1. **Clean up the transcription.** Fix misheard words, remove filler ("um," "uh," "you know"), and smooth out sentence structure. Preserve Connor's actual thoughts and words; don't add sins he didn't mention or soften what he said.
2. **Organize into numbered sections.** Each distinct sin or struggle gets its own `##` heading. Group related items together if they're clearly the same category.
3. **Capture the common thread.** If Connor identifies a pattern across his sins (e.g., "discouragement," "taking the easy path"), include a "Common thread" section summarizing it. If he doesn't identify one, omit this section.
4. **Preserve the script.** The opening ("Bless me Father for I have sinned...") and closing ("This is all I can remember...") are standard script elements. If Connor includes them, keep them formatted as shown in the template. If he doesn't, add them with placeholders for the timeframe.
5. **Include resolution notes.** If Connor expresses a desire to change something or a resolution, place it after the ending script, before the blank "Advice" and "Penance" headings (these get filled in during the actual confession).
## Style Rules
- Write in first person throughout. This is what Connor will say (or think) in the confessional.
- Be honest and specific without being melodramatic. State the sin plainly.
- Don't editorialize, add commentary, or spiritualize. Connor's words are sufficient.
- Don't add em-dashes. Use commas or colons.
- Keep each sin item to a short paragraph. This is meant to be glanced at, not read word-for-word.
## File Location
Save the note to `Inbox/agent/examination-of-conscience.md` unless Connor specifies otherwise.