fyi

Log timestamped markdown notes with significance levels into a memory index.

Updated Feb 28, 2026
One-click install
npx skills add https://github.com/heman1033p-create/cv-v2-kongphop --skill fyi-heman1033p-create
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: fyi
Source: https://github.com/heman1033p-create/cv-v2-kongphop/tree/main/.gemini/skills/fyi
Command: npx skills add https://github.com/heman1033p-create/cv-v2-kongphop --skill fyi-heman1033p-create

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? It captures ad-hoc information, reminders, and notes shared during a conversation so they are not lost, storing them as structured markdown files for later review. ## Core Features & Use Cases - Information Logging: Creates timestamped markdown files with frontmatter (date, type, status, significance) in a memory logs directory. - Significance Levels: Supports neutral, interesting, and important flags, with important entries also saved to Oracle for immediate searchability. - Index Review: Running without arguments reads and summarizes the existing info INDEX.md. - Use Case: During a project discussion, say "fyi the staging server IP changed to 10.0.3.5" and the note is logged with a timestamp and indexed for future reference. ## Quick Start Say "fyi remember that the API rate limit resets at midnight" to log the note as a timestamped markdown file.

Frequently Asked Questions about fyi

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I log a note for future reference during a chat?▼

Invoke the skill with your note text, for example "/fyi the deploy window is Friday". It creates a timestamped markdown file in psi/memory/logs/info/ and updates the INDEX.md summary.

How do I mark a logged note as important?▼

Use the --important or -p flag, such as "/fyi --important the API key rotates Monday". Important entries are also passed to oracle_learn() so they become immediately searchable.

What significance levels does the info log support?▼

Three levels: neutral (no flag, white icon), interesting (--interesting or -i, yellow), and important (--important or -p, red). The level is stored in the file's frontmatter significance field.

How do I review previously logged information?▼

Run the skill with no arguments. It reads psi/memory/logs/info/INDEX.md and shows a summary of all existing logged entries.

Are special characters in my note executed as commands?▼

No. Arguments are treated as raw text and written directly to files with the Write tool. The skill explicitly avoids running bash commands with user arguments.