{"id":34830041,"url":"https://github.com/noyonalways/gotion","last_synced_at":"2026-01-13T20:53:43.296Z","repository":{"id":330599485,"uuid":"1122701173","full_name":"noyonalways/gotion","owner":"noyonalways","description":"Note taking CLI application based on golang","archived":false,"fork":false,"pushed_at":"2025-12-26T16:25:11.000Z","size":29,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-28T05:23:35.915Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","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/noyonalways.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-25T10:13:24.000Z","updated_at":"2025-12-26T16:25:14.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/noyonalways/gotion","commit_stats":null,"previous_names":["noyonalways/gotion"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/noyonalways/gotion","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/noyonalways%2Fgotion","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/noyonalways%2Fgotion/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/noyonalways%2Fgotion/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/noyonalways%2Fgotion/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/noyonalways","download_url":"https://codeload.github.com/noyonalways/gotion/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/noyonalways%2Fgotion/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28400155,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-13T14:36:09.778Z","status":"ssl_error","status_checked_at":"2026-01-13T14:35:19.697Z","response_time":56,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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-12-25T15:47:36.088Z","updated_at":"2026-01-13T20:53:43.290Z","avatar_url":"https://github.com/noyonalways.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Gotion Banner](https://i.ibb.co.com/dwFDBKYx/gotion-banner-cmp.png)\n\n# Gotion – Local-First CLI Note Manager\n\n**Gotion** is a zero-dependency, cross-platform CLI that turns your terminal into a fast, offline note-taking workspace.  \nCreate, search, edit, tag, and archive **Markdown notes** stored directly on your machine—no servers, no cloud. All content lives as plain `.md` files in a folder you control, so you can sync, backup, or version-control them like any other project asset.\n\n---\n\n## ✨ Key Features\n\n- **Blazing Fast** – sub-second cold start, millisecond queries\n- **Offline \u0026 Private** – no cloud, no sign-ups, fully local storage\n- **Portable Folder** – one directory of `.md` files; move, backup, or git-track it\n- **Full-text Search** – fuzzy-find across titles, bodies, and tags\n\n---\n\n## 🚀 Installation \u0026 Run\n\n| Target           | Command                      | Result                                                             |\n| ---------------- | ---------------------------- | ------------------------------------------------------------------ |\n| **Quick Try**    | `make build`                 | Produces `./gotion` (or `gotion.exe`) for immediate local testing. |\n| **Run the App**  | `make run`                   | Builds (if needed) and starts Gotion in one step.                  |\n| **Add Features** | `make dev feat=new-search`   | Scaffolds boilerplate for a new feature branch.                    |\n| **Release**      | `git tag -a v1.2.0 -m \"...\"` | Creates annotated tag; triggers GoReleaser via GitHub Actions.     |\n| **Install**      | `make install`               | Copies binary to `$GOPATH/bin` (or `%GOPATH%\\bin` on Windows).     |\n| **Run Anywhere** | `gotion`                     | Available system-wide after install; auto-detects `$HOME/Notes`.   |\n\n---\n\n## 🧪 Clone \u0026 Extend\n\n1. **Install Go (if you haven’t already)**\n   ```bash\n   # macOS (Homebrew)\n   brew install go\n\n   # Ubuntu / Debian\n   sudo apt update \u0026\u0026 sudo apt install golang-go\n\n   # Arch Linux\n   sudo pacman -S go\n\n   # Windows (Scoop)\n   scoop install go\n   ```\n\n2. **Clone the repo**\n   ```bash\n   git clone https://github.com/noyonalways/gotion.git\n   cd gotion\n   ```\n\n3. **Install Dependencies**\n   ```bash\n   go mod tidy\n   ```\n\n4. **Hack on a new feature**\n   ```bash\n   make dev feat=my-awesome-idea\n   # code, test, commit…\n   ```\n\n5. **Push \u0026 open a PR**\n   ```bash\n   git push origin feat/my-awesome-idea\n   # open pull-request on GitHub\n   ```\n\n---\n\n## 📦 Build \u0026 Release Pipeline\n\nWe follow a trunk-based workflow with automated releases:\n\n1. **Stage changes**\n\n   ```bash\n   git add .\n   git commit -m \"feat: add encrypted note support\"\n   git push origin main\n   ```\n\n2. **Tag release**\n\n   ```bash\n   git tag -a v1.3.0 -m \"release: encrypted notes, arm64 builds, zsh completion\"\n   git push origin v1.3.0\n   ```\n\n3. **CI takes over**\n   - GoReleaser cross-compiles binaries for 10 targets\n   - Checksums \u0026 SBOMs are generated and attached\n   - Homebrew formula is auto-bumped\n   - Docker images (`ghcr.io/your-org/gotion:v1.3.0`) are published\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnoyonalways%2Fgotion","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnoyonalways%2Fgotion","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnoyonalways%2Fgotion/lists"}