This folder contains development artifacts for the reflection-skill. It's separate from the skill's user-facing definition (../SKILL.md).
- DEVELOPMENT.md — Implementation guide and design decisions
- import-script.sh — Main script for importing journal entries from an existing vault
-
Make a test vault with a few sample markdown files:
mkdir -p /tmp/test-vault echo "Morning thought" > /tmp/test-vault/2026-03-06.md echo "Evening reflection" > /tmp/test-vault/2026-03-05.md
-
Run the import script:
./import-script.sh /tmp/test-vault
-
Check the results:
ls -la ../entries/ cat ../entries/2026-03-06.md
Once tested, point it at your actual vault:
./import-script.sh /path/to/your/vaultThe script will:
- Scan all .md files
- Parse dates from filenames or file creation time
- Create entries in
reflection/entries/ - Generate
reflection/metadata.jsonwith import summary
- Test with sample files
- Run full import on your vault
- Verify entry structure and metadata
- Review summary report
- Build lens framework (Phase 2)