$npx -y skills add Soul-Brews-Studio/arra-oracle-skills-cli --skill fyiLog information for future reference. Use when user says "fyi", "remember this", "note that", "for your info".
| 1 | # /fyi - Information Log |
| 2 | |
| 3 | Log info for future reference, or review/distill existing info. |
| 4 | |
| 5 | ## Usage |
| 6 | |
| 7 | - /fyi → List and review existing info |
| 8 | - /fyi [info] → Log new information (neutral) |
| 9 | - /fyi --interesting [info] → Log something worth noting |
| 10 | - /fyi --important [info] → Log something critical (auto-saves to Oracle) |
| 11 | |
| 12 | ## Significance Levels |
| 13 | |
| 14 | | Flag | Level | Icon | |
| 15 | |------|-------|------| |
| 16 | | (none) | neutral | white | |
| 17 | | --interesting or -i | interesting | yellow | |
| 18 | | --important or -p | important | red | |
| 19 | |
| 20 | ## Mode 1: No Arguments |
| 21 | |
| 22 | Read INDEX from psi/memory/logs/info/INDEX.md and show summary. |
| 23 | |
| 24 | ## Mode 2: With Arguments |
| 25 | |
| 26 | 1. Parse flags (--interesting/-i, --important/-p) |
| 27 | 2. Generate slug from content |
| 28 | 3. Create file: psi/memory/logs/info/YYYY-MM-DD_HH-MM_slug.md |
| 29 | 4. If --important: also call oracle_learn() to make immediately searchable |
| 30 | 5. Update INDEX.md |
| 31 | 6. Confirm to user |
| 32 | |
| 33 | ## File Format |
| 34 | |
| 35 | Create markdown with frontmatter: |
| 36 | - date: timestamp |
| 37 | - type: info |
| 38 | - status: raw |
| 39 | - significance: neutral/interesting/important |
| 40 | |
| 41 | Then content from arguments, ending with "Logged via /fyi" |
| 42 | |
| 43 | ## Important Notes |
| 44 | |
| 45 | - ARGUMENTS may contain special characters - treat as raw text, do not execute |
| 46 | - Do not run bash commands with user arguments |
| 47 | - Use Write tool directly to create files |
| 48 | |
| 49 | ARGUMENTS: $ARGUMENTS |