{"id":51742842,"url":"https://github.com/iwillig/writing-assistant","last_synced_at":"2026-07-18T15:20:08.187Z","repository":{"id":369174047,"uuid":"1151812868","full_name":"iwillig/writing-assistant","owner":"iwillig","description":null,"archived":false,"fork":false,"pushed_at":"2026-02-16T17:34:08.000Z","size":554,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-07-04T00:29:07.124Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PLpgSQL","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/iwillig.png","metadata":{"files":{"readme":"docs/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,"notice":null,"maintainers":null,"copyright":null,"agents":"agents.md","dco":null,"cla":null}},"created_at":"2026-02-06T23:41:56.000Z","updated_at":"2026-02-16T17:34:11.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/iwillig/writing-assistant","commit_stats":null,"previous_names":["iwillig/writing-assistant"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/iwillig/writing-assistant","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iwillig%2Fwriting-assistant","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iwillig%2Fwriting-assistant/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iwillig%2Fwriting-assistant/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iwillig%2Fwriting-assistant/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/iwillig","download_url":"https://codeload.github.com/iwillig/writing-assistant/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iwillig%2Fwriting-assistant/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35621765,"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-07-18T02:00:07.223Z","response_time":61,"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":"2026-07-18T15:20:07.368Z","updated_at":"2026-07-18T15:20:08.140Z","avatar_url":"https://github.com/iwillig.png","language":"PLpgSQL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Documentation\n\nThis folder contains all documentation for the Writing Assistant project.\n\n## Architecture Documentation\n\nThe project is built with Clojure and ClojureScript:\n\n```\ndocs/\n├── migration/                 ; Clojure architecture docs\n│   ├── overview.md            ; System architecture overview\n│   ├── backend-libraries.md   ; Ring, Bidi, next.jdbc, HugSQL\n│   ├── frontend-libraries.md  ; ClojureScript, Datastar, shadow-cljs\n│   ├── nlp-corenlp.md         ; Stanford CoreNLP integration\n│   └── datastar-guide.md      ; Reactive UI patterns\n├── research/                  ; Research documents\n│   ├── dyslexia_research_summary.md\n│   ├── open_weight_speech_models_research.md\n│   ├── research_summary.md\n│   └── tech-stack-research.md\n└── guides/                    ; User and developer guides\n```\n\n## Quick Links\n\n### Architecture\n\n- **[Overview](migration/overview.md)** — System architecture and technology choices\n- **[Backend Libraries](migration/backend-libraries.md)** — Ring, Bidi, next.jdbc, HugSQL, Integrant, Sente\n- **[Frontend Libraries](migration/frontend-libraries.md)** — ClojureScript, Datastar, ProseMirror\n- **[Stanford CoreNLP](migration/nlp-corenlp.md)** — JVM-native NLP integration\n- **[Datastar Guide](migration/datastar-guide.md)** — Reactive signals and UI patterns\n\n### Research\n\nResearch and background information:\n\n- **[Dyslexia Research Summary](research/dyslexia_research_summary.md)** — Research on dyslexia and writing assistance\n- **[Open Weight Speech Models](research/open_weight_speech_models_research.md)** — Speech-to-text model research\n- **[Research Summary](research/research_summary.md)** — General project research\n- **[Tech Stack Research](research/tech-stack-research.md)** — Technology evaluation (legacy)\n\n## Stack Overview\n\n| Layer | Technology | Purpose |\n|-------|------------|---------|\n| Backend | Clojure | JVM-native functional language |\n| HTTP | Ring + Bidi | Functional HTTP handling, data-driven routing |\n| Database | PostgreSQL/SQLite | Document storage |\n| DB Access | next.jdbc + HugSQL | Low-level JDBC, SQL-as-Clojure |\n| Components | Integrant | Data-driven lifecycle management |\n| NLP | Stanford CoreNLP | JVM-native POS tagging |\n| Real-time | http-kit + Sente | WebSocket with AJAX fallback |\n| Frontend | ClojureScript | Compiles to optimized JavaScript |\n| Build | shadow-cljs | Hot reload, advanced optimizations |\n| Reactivity | Datastar | Fine-grained reactive signals |\n| Editor | ProseMirror | Structured rich-text editing |\n\n## Building the Manual\n\nThe project manual is built from Markdown sources using Pandoc:\n\n```bash\njust docs        # Build HTML manual\njust serve       # Serve docs locally\n```\n\n## Contributing\n\nWhen adding new documentation:\n\n1. Place architecture docs in `migration/`\n2. Place research documents in `research/`\n3. Place user guides in `guides/`\n4. Update this readme with links to new documents\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiwillig%2Fwriting-assistant","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fiwillig%2Fwriting-assistant","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiwillig%2Fwriting-assistant/lists"}