Use when you have a written implementation plan to execute in a separate session with review checkpoints
npx skills add Anshin-Health-Solutions/superpai --skill "aphorisms"
Install specific skill from multi-skill repository
# Description
Aphorism management. Store, retrieve, and reflect on quotes and sayings.
# SKILL.md
name: aphorisms
description: "Aphorism management. Store, retrieve, and reflect on quotes and sayings."
triggers:
- aphorism
- quote
- saying
- wisdom quote
Aphorisms Skill
Manage a personal collection of quotes, aphorisms, and wisdom sayings with full CRUD operations, tagging, and integration with the TELOS belief system.
Storage Format
Aphorisms are stored in memory/STATE/aphorisms.json as a JSON array. Each entry follows this schema:
{
"id": "aph_20260302_001",
"text": "We are what we repeatedly do. Excellence, then, is not an act, but a habit.",
"author": "Will Durant",
"source": "The Story of Philosophy (1926)",
"tags": ["excellence", "habits", "discipline"],
"date_added": "2026-03-02",
"telos_alignment": "purpose",
"notes": "Often misattributed to Aristotle. Durant was summarizing Aristotle's Nicomachean Ethics."
}
| Field | Type | Required | Description |
|---|---|---|---|
| id | string | yes | Auto-generated: aph_YYYYMMDD_NNN |
| text | string | yes | The full aphorism text |
| author | string | yes | Attribution (use "Unknown" if unattributed) |
| source | string | no | Book, speech, or origin context |
| tags | string[] | yes | 1-5 topic tags for searchability |
| date_added | string | yes | ISO date of when it was added |
| telos_alignment | string | no | TELOS belief it connects to (purpose, ethics, growth, resilience, truth) |
| notes | string | no | Personal reflection or context |
CRUD Operations
Add an Aphorism
User says: "Add this quote: 'The map is not the territory' by Alfred Korzybski"
Process:
1. Parse the text and author from the user input
2. Generate a unique ID based on today's date and next sequence number
3. Prompt for optional fields (source, tags) or infer them from content
4. Append to memory/STATE/aphorisms.json
5. Confirm with the formatted display
Search Aphorisms
Supported search modes:
| Command | Example | Behavior |
|---|---|---|
| Search by tag | "find quotes about discipline" | Filter where tags contain "discipline" |
| Search by author | "quotes from Seneca" | Filter where author matches "Seneca" |
| Search by keyword | "search aphorisms for 'courage'" | Full-text search across text field |
| Search by TELOS | "aphorisms aligned with purpose" | Filter by telos_alignment field |
Random Aphorism
User says: "Give me a random quote" or "daily wisdom"
Process:
1. Load the aphorisms array
2. Select one at random (or use date-seeded selection for "daily" to ensure consistency)
3. Display in the formatted output
Delete an Aphorism
User says: "Remove the aphorism about maps and territory"
Process:
1. Search for matching aphorism by keyword
2. Display the match and ask for confirmation
3. Remove from the JSON array on confirmation
4. Confirm deletion
TELOS Belief Integration
Aphorisms can be tagged with a TELOS alignment to connect wisdom to the user's personal belief framework:
| TELOS Value | Aphorism Theme Examples |
|---|---|
| Purpose | Mission, calling, meaning, direction |
| Ethics | Integrity, justice, fairness, duty |
| Growth | Learning, improvement, mastery, change |
| Resilience | Endurance, adversity, persistence, recovery |
| Truth | Honesty, clarity, objectivity, evidence |
Output Format
When displaying an aphorism:
---
"We are what we repeatedly do. Excellence, then, is not an act, but a habit."
-- Will Durant, The Story of Philosophy (1926)
Tags: #excellence #habits #discipline
TELOS: purpose
---
When displaying search results (multiple):
Found 3 aphorisms matching "discipline":
1. "We are what we repeatedly do..." -- Will Durant [#excellence #habits #discipline]
2. "Discipline is the bridge between goals and accomplishment." -- Jim Rohn [#discipline #goals]
3. "No man is free who is not master of himself." -- Epictetus [#discipline #freedom #stoicism]
Batch Import
To import multiple aphorisms from a content source (book notes, article, etc.):
- User provides raw text with quotes
- Parse each quote, extracting text and author
- Auto-generate tags using keyword extraction
- Present the batch for review before saving
- Append all confirmed entries to the JSON file
When to Use
- User asks to save, find, or display a quote or aphorism
- User asks for daily wisdom or a random quote
- User provides a list of quotes to store
- User wants quotes related to a TELOS belief or specific topic
# Supported AI Coding Agents
This skill is compatible with the SKILL.md standard and works with all major AI coding agents:
Learn more about the SKILL.md standard and how to use these skills with your preferred AI coding agent.