KiwiFS can import data from databases, files, and SaaS platforms — converting each row/record into a markdown page with structured frontmatter.Documentation Index
Fetch the complete documentation index at: https://docs.kiwifs.com/llms.txt
Use this file to discover all available pages before exploring further.
Supported sources
PostgreSQL
--from postgresMySQL
--from mysqlSQLite
--from sqliteMongoDB
--from mongodbCSV
--from csvJSON
--from jsonYAML
--from yamlExcel
--from excelNotion
--from notionAirtable
--from airtableGoogle Sheets
--from gsheetsFirestore
--from firestoreKey features
- Idempotent — re-importing the same data skips unchanged records
- Column filtering —
--columns "name,email,status"to include only specific fields - Dry run —
--dry-runto preview what would be imported - Limit —
--limit 100to import a subset - Custom queries —
--query "SELECT * FROM users WHERE active = true"
How it works
Each record becomes a markdown file with frontmatter:_source_id field enables idempotent re-imports — KiwiFS compares field values and skips records that haven’t changed.