{"id":30325774,"url":"https://github.com/atomantic/ideatorpromptpacks","last_synced_at":"2026-02-12T10:03:46.501Z","repository":{"id":309450631,"uuid":"1036172235","full_name":"atomantic/IdeatorPromptPacks","owner":"atomantic","description":"prompt packs for ideator ios app","archived":false,"fork":false,"pushed_at":"2025-08-12T01:08:40.000Z","size":29,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-12T01:28:05.949Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/atomantic.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-08-11T17:01:07.000Z","updated_at":"2025-08-12T01:08:44.000Z","dependencies_parsed_at":"2025-08-12T01:28:11.707Z","dependency_job_id":null,"html_url":"https://github.com/atomantic/IdeatorPromptPacks","commit_stats":null,"previous_names":["atomantic/ideatorpromptpacks"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/atomantic/IdeatorPromptPacks","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atomantic%2FIdeatorPromptPacks","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atomantic%2FIdeatorPromptPacks/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atomantic%2FIdeatorPromptPacks/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atomantic%2FIdeatorPromptPacks/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/atomantic","download_url":"https://codeload.github.com/atomantic/IdeatorPromptPacks/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atomantic%2FIdeatorPromptPacks/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270918404,"owners_count":24667679,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-17T02:00:09.016Z","response_time":129,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-08-17T23:07:49.611Z","updated_at":"2026-02-12T10:03:46.496Z","avatar_url":"https://github.com/atomantic.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Idea Loom Prompt Packs\n\nThis repository hosts downloadable prompt packs for the Idea Loom app - a creative brainstorming iOS app that helps users generate ideas through guided prompts.\n\nPrompts are topical ideas themselves that spark brainstorming inspiration to the end user. A good list topic is a non-specific idea of things that a person can think of without having to do online research--we are trying to improve brainstorming and ideation, not googling :) so rather than a list prompt like \"names of state capitals\", a good list prompt is something like \"places I'd like to visit.\" This makes the prompt personal and allows creative/fictional places to be listed like Hogwarts or the Starship Enterprise.\n\n## Available Packs\n\nBrowse the `packs.json` file to see all available prompt packs that can be downloaded directly from within the Idea Loom app.\n\n## Pack Structure\n\nEach prompt pack consists of:\n- A `manifest.json` file with pack metadata\n- One or more `.tsv` files containing prompts for each category\n- Categories are organized by theme (e.g., creative, professional, lifestyle)\n\n### TSV Format\n\nSchema v1 (current on `main`):\n- Columns: `text` (prompt text)\n\nSchema v2+ (staged on `main` when introduced):\n- Columns: `text`, `help` (optional short hint shown in app)\n\nExample (v1):\n```tsv\ntext\nbusiness ideas to explore\nways to improve my workspace\n```\n\nExample (v2):\n```tsv\ntext\thelp\nbusiness ideas to explore\t(person + pain + promise)\n```\n\n## Creating Your Own Pack\n\nTo create a custom prompt pack:\n\n1. Create a new folder in `packs/` with your pack ID\n2. Add a `manifest.json` file:\n```json\n{\n  \"id\": \"your-pack-id\",\n  \"name\": \"Your Pack Name\",\n  \"version\": \"1.0.0\",\n  \"description\": \"Description of your pack\",\n  \"author\": \"Your Name\",\n  \"categories\": [\n    {\n      \"id\": \"category1\",\n      \"name\": \"Category Name\",\n      \"file\": \"category1.tsv\",\n      \"icon\": \"system.icon.name\",\n      \"color\": \"blue\"\n    }\n  ]\n}\n```\n\n3. Create TSV files for each category\n4. Submit a pull request to add your pack\n\n## Contributing\n\nWe welcome contributions! Please follow these guidelines:\n- Keep prompts appropriate for all audiences\n- Ensure prompts can be completed without external research\n- Focus on ideation and imagination rather than factual knowledge\n- Group related prompts into logical categories\n\nFormatting and validation:\n- Run `node build.js` before committing. It will:\n  - Capitalize the first letter of each prompt text\n  - Ensure TSV rows are `text` or `text\\thelp` only\n  - Recover lines where help was added without a tab (e.g., `Title (hint)`)\n  - Alphabetize rows by the `text` column\n  - Regenerate `packs.json`\n- CI runs the same checks and will fail if `build.js` would change files.\n\nOptional pre-commit hook:\n- Install the local git hook to enforce normalization automatically:\n  ```bash\n  chmod +x scripts/pre-commit tools/verify-build.sh\n  ln -sf \"$(pwd)/scripts/pre-commit\" .git/hooks/pre-commit\n  ```\n  Now commits will abort if you forget to run the build.\n\n## Pack Categories\n\n### Core Pack (Built-in)\n- Personal Development\n- Professional\n- Creative\n- Lifestyle\n- Relationships\n- Entertainment\n- Travel \u0026 Adventure\n- Learning \u0026 Skills\n- Financial\n- Social Impact\n- Health \u0026 Fitness\n- Mindfulness\n- Self Care\n- Gratitude\n\n### Community Packs (Downloadable)\n- Tech Startup Pack\n- Creative Writing Pack\n- Family \u0026 Parenting Pack\n- Surreal Ideation Pack\n- Disaster Prep\n- And more coming soon!\n\n## License\n\nAll prompt packs in this repository are provided under the MIT License. Feel free to use, modify, and share!\n\n## Support\n\nFor issues or questions about prompt packs, please open an issue in this repository.\nFor app-related issues, visit the main app repository.\n\n## Versioning and Schema Policy\n\n- The root `schema.json` declares the current major schema version used on `main` (e.g., `{ \"schemaMajor\": 1 }`).\n- App releases are tagged in this repo as `vX.Y.Z` (matching the App Store version).\n- `main` can introduce breaking schema changes at any time. When that happens:\n  1. Tag the repo with the current store version `vX.Y.Z` so older apps have a stable snapshot.\n  2. Bump `schemaMajor` in `schema.json` on `main`.\n  3. Land breaking changes on `main`.\n- Ideator app behavior:\n  - If `schemaMajor` on `main` is greater than the app’s supported schema, the app fetches packs from the matching tag `vX.Y.Z`.\n  - Otherwise, the app uses `main`.\n  - If a fetch from a tag fails (e.g., tag not present), the app falls back to `main`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatomantic%2Fideatorpromptpacks","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fatomantic%2Fideatorpromptpacks","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatomantic%2Fideatorpromptpacks/lists"}