{"id":50486956,"url":"https://github.com/systemslibrarian/bible-ai-prompting-class","last_synced_at":"2026-06-01T23:03:00.495Z","repository":{"id":309356447,"uuid":"1035964731","full_name":"systemslibrarian/bible-ai-prompting-class","owner":"systemslibrarian","description":"Learn AI prompt engineering through Bible study — NIV edition with lessons, examples, and an expanded prompt library.","archived":false,"fork":false,"pushed_at":"2025-08-11T11:39:59.000Z","size":33,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-11T13:08:29.539Z","etag":null,"topics":["ai","bible","christianity","faith","prompt-engineering"],"latest_commit_sha":null,"homepage":"","language":"Jupyter Notebook","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/systemslibrarian.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-11T11:06:27.000Z","updated_at":"2025-08-11T11:40:02.000Z","dependencies_parsed_at":"2025-08-11T13:19:08.103Z","dependency_job_id":null,"html_url":"https://github.com/systemslibrarian/bible-ai-prompting-class","commit_stats":null,"previous_names":["systemslibrarian/bible-ai-prompting-class"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/systemslibrarian/bible-ai-prompting-class","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/systemslibrarian%2Fbible-ai-prompting-class","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/systemslibrarian%2Fbible-ai-prompting-class/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/systemslibrarian%2Fbible-ai-prompting-class/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/systemslibrarian%2Fbible-ai-prompting-class/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/systemslibrarian","download_url":"https://codeload.github.com/systemslibrarian/bible-ai-prompting-class/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/systemslibrarian%2Fbible-ai-prompting-class/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33797128,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-01T02:00:06.963Z","response_time":115,"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":["ai","bible","christianity","faith","prompt-engineering"],"created_at":"2026-06-01T23:02:57.883Z","updated_at":"2026-06-01T23:03:00.485Z","avatar_url":"https://github.com/systemslibrarian.png","language":"Jupyter Notebook","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Bible + AI Prompting Masterclass (NIV)\n\n[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/systemslibrarian/bible-ai-prompting-class/blob/main/bible_ai_prompting_masterclass_NIV_expanded.ipynb)\n\nLearn practical prompt engineering through guided Bible study exercises.\n\nThis repository contains:\n- **Full notebook** — `bible_ai_prompting_masterclass_NIV_expanded.ipynb` (detailed lessons with practice cells)\n- **Compact notebook** — `bible_ai_prompting_compact.ipynb` (same 7 techniques, powered by a reusable helper module)\n- **Streamlit web app** — `app.py` (interactive UI, no Jupyter required)\n\n## What You Will Learn\n- Role prompting (persona + audience)\n- Contextual prompting (historical and literary grounding)\n- Few-shot prompting (teach by example)\n- Comparative synthesis across passages\n- Socratic prompting for reflection\n- Format \u0026 constraint prompting (include/exclude boundaries)\n- Meta-prompting (AI writes better prompts for you)\n\n## Quick Start\n\n### Option 1: Google Colab\n1. Click the Colab badge above.\n2. Run the setup cell.\n3. Enter your `OPENAI_API_KEY` when prompted.\n4. Run cells top-to-bottom.\n\n### Option 2: Local Jupyter\n```bash\npip install -r requirements.txt\njupyter lab\n```\nOpen either notebook and run in order.\n\n### Option 3: Streamlit Web App\n```bash\npip install -r requirements.txt\nstreamlit run app.py\n```\nThe app opens in your browser with tabs for interactive study, advanced templates, the prompt library, and session history.\n\n## Environment\n```bash\nexport OPENAI_API_KEY=\"your_key_here\"\n```\nThe setup cell / Streamlit sidebar also accept the key interactively.\n\n## Project Structure\n```text\n.\n├── bible_ai_prompting_masterclass_NIV_expanded.ipynb  # full notebook\n├── bible_ai_prompting_compact.ipynb                   # compact notebook\n├── app.py                                             # Streamlit web UI\n├── bible_ai/\n│   ├── __init__.py\n│   └── helpers.py                                     # reusable BibleAI class + prompt catalogues\n├── scripts/\n│   └── notebook_quality_check.py\n├── .github/\n│   └── workflows/\n│       └── ci.yml                                     # GitHub Actions CI\n├── requirements.txt\n├── Makefile\n└── README.md\n```\n\n## Using the Helper Module\n\nThe `bible_ai` package can be used in any Python script or notebook:\n\n```python\nfrom bible_ai import BibleAI, TECHNIQUES\n\nai = BibleAI()                                    # reads OPENAI_API_KEY from env\nprint(ai.study(\"John 3:16\", \"Explain Simply\"))     # one-liner study\nprint(ai.advanced(\"Word Study (Hebrew/Greek)\"))    # advanced template\nai.export()                                        # save JSON + Markdown\n```\n\n## Exports\nSession logs are exported to:\n- `bible_ai_exports/session_\u003ctimestamp\u003e.json`\n- `bible_ai_exports/session_\u003ctimestamp\u003e.md`\n\n## CI / Quality Checks\n\nEvery push and PR runs the GitHub Actions workflow (`.github/workflows/ci.yml`) which:\n- Validates both notebooks with `nbformat` and the custom quality checker\n- Compiles the helper module and Streamlit app (syntax check)\n\nRun locally:\n```bash\nmake check   # notebook quality\nmake lint    # Python syntax\n```\n\n## Safety Note\nAI is a study companion, not a replacement for prayer, sound interpretation, and wise pastoral counsel.\n\nAlways compare generated content with Scripture in context.\n\n## License\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsystemslibrarian%2Fbible-ai-prompting-class","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsystemslibrarian%2Fbible-ai-prompting-class","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsystemslibrarian%2Fbible-ai-prompting-class/lists"}