{"id":49743121,"url":"https://github.com/jormazabal/knownext.ai","last_synced_at":"2026-06-16T18:00:37.386Z","repository":{"id":356800117,"uuid":"1233758122","full_name":"jormazabal/knownext.ai","owner":"jormazabal","description":"Tauri desktop workspace for managing Markdown project documentation","archived":false,"fork":false,"pushed_at":"2026-06-06T17:09:30.000Z","size":3766,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-06T19:07:06.913Z","etag":null,"topics":["desktop","fastapi","markdown","milkdown","react","tauri","typescript"],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jormazabal.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":"NOTICE","maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-05-09T10:16:58.000Z","updated_at":"2026-06-06T17:08:56.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/jormazabal/knownext.ai","commit_stats":null,"previous_names":["jormazabal/knownext.ai"],"tags_count":76,"template":false,"template_full_name":null,"purl":"pkg:github/jormazabal/knownext.ai","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jormazabal%2Fknownext.ai","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jormazabal%2Fknownext.ai/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jormazabal%2Fknownext.ai/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jormazabal%2Fknownext.ai/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jormazabal","download_url":"https://codeload.github.com/jormazabal/knownext.ai/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jormazabal%2Fknownext.ai/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34417416,"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-16T02:00:06.860Z","response_time":126,"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":["desktop","fastapi","markdown","milkdown","react","tauri","typescript"],"created_at":"2026-05-09T22:04:09.829Z","updated_at":"2026-06-16T18:00:37.381Z","avatar_url":"https://github.com/jormazabal.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# KnowNext.ai\n\nKnowNext.ai is a local-first Tauri application for managing, editing, versioning, exporting, and consulting Markdown documentation by project.\n\nVersion 2.5.0 runs as a self-contained native app on Windows and Android:\n\n- Tauri v2 shell and commands.\n- Rust local runtime for persistence, documents, exports, AI orchestration, diagnostics, and project operations.\n- React + TypeScript frontend.\n- Tailwind CSS visual system.\n- Milkdown visual Markdown editor.\n- Frontend API boundary under `apps/desktop/src/lib/api`, backed by Tauri commands instead of HTTP.\n- Local JSON/file persistence with replaceable Rust services.\n\nThere is no external product service, packaged auxiliary runtime, API port, or mobile workstation dependency in 2.5.0.\n\n## Download\n\nThe latest installers are published on GitHub Releases:\n\n- [Download KnowNext.ai for Windows](https://github.com/jormazabal/knownext.ai/releases/latest/download/KnowNext.ai_2.5.0_x64_en-US.msi)\n- [Download KnowNext.ai for Android arm64](https://github.com/jormazabal/knownext.ai/releases/latest/download/KnowNext.ai-android-arm64-v2.5.0.apk)\n- [View all releases](https://github.com/jormazabal/knownext.ai/releases)\n\nThe Windows updater checks the signed Tauri manifest:\n\n```text\nhttps://github.com/jormazabal/knownext.ai/releases/latest/download/latest.json\n```\n\nThe private Android updater checks:\n\n```text\nhttps://github.com/jormazabal/knownext.ai/releases/latest/download/android-latest.json\n```\n\nWindows may show a SmartScreen or endpoint protection warning for unsigned open source builds. The Tauri updater manifest and update artifacts are signed; Authenticode signing is optional until a public code-signing certificate exists.\n\nAndroid private APK installs use the Android system installer. Android may ask you to allow installs from KnowNext.ai before an in-app private update can continue.\n\n## Run Locally\n\nInstall dependencies:\n\n```bash\npnpm install\n```\n\nRun the browser development UI against the local Tauri-command adapter:\n\n```bash\npnpm dev\n```\n\nRun the native Windows desktop app:\n\n```bash\npnpm desktop\n```\n\nBuild the native Android app after installing the Android SDK/NDK:\n\n```powershell\npnpm android:init\npnpm android:build\n```\n\nFor a debug APK:\n\n```powershell\n$env:KNOWNEXT_ANDROID_ABI=\"arm64\"\npnpm android:build:debug\n```\n\nAndroid artifacts are generated under `apps/desktop/src-tauri/gen/android/app/build/outputs`, and the helper copies the arm64 debug APK to `output/KnowNext.ai-android-arm64-debug.apk`. Android uses the same local Tauri/Rust runtime contracts as Windows and does not connect to a workstation service.\n\n## Validate\n\n```bash\npnpm version:check\npnpm build\npnpm test\npnpm rust:test\npnpm bundle:check-clean\npnpm release:check\n```\n\nRelease builds require the Tauri updater signing key and Android keystore secrets described in `docs/development/release-process.md`.\n\n## Documentation\n\n- Product definition: `docs/product/product-definition.md`\n- Architecture overview: `docs/architecture/architecture-overview.md`\n- Desktop runtime: `docs/architecture/desktop-runtime.md`\n- Mobile runtime: `docs/architecture/mobile-runtime.md`\n- Getting started: `docs/development/getting-started.md`\n- Release process: `docs/development/release-process.md`\n- Manual test checklist: `docs/development/manual-test-checklist.md`\n- Open source readiness: `docs/legal/open-source-readiness.md`\n- Agent instructions: `AGENTS.md`\n\n## Contributing\n\nContributions are welcome under the Apache-2.0 license. See `CONTRIBUTING.md` and `SECURITY.md` before submitting code or reporting vulnerabilities.\n\n## License\n\nKnowNext.ai is licensed under the Apache License, Version 2.0. See `LICENSE`, `NOTICE`, and `THIRD_PARTY_NOTICES.md`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjormazabal%2Fknownext.ai","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjormazabal%2Fknownext.ai","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjormazabal%2Fknownext.ai/lists"}