{"id":31579091,"url":"https://github.com/suningrass/chasm","last_synced_at":"2026-05-18T10:38:46.168Z","repository":{"id":312797973,"uuid":"1048267636","full_name":"suningrass/chasm","owner":"suningrass","description":"personal tool for assembling character  ----char assemble ---- chasm","archived":false,"fork":false,"pushed_at":"2025-09-14T10:58:21.000Z","size":48,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-05T20:52:26.162Z","etag":null,"topics":["assembly","character","cli","tui"],"latest_commit_sha":null,"homepage":"","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/suningrass.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-09-01T07:27:10.000Z","updated_at":"2025-09-14T10:58:24.000Z","dependencies_parsed_at":"2025-09-02T04:36:22.582Z","dependency_job_id":null,"html_url":"https://github.com/suningrass/chasm","commit_stats":null,"previous_names":["suningrass/chasm"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/suningrass/chasm","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/suningrass%2Fchasm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/suningrass%2Fchasm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/suningrass%2Fchasm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/suningrass%2Fchasm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/suningrass","download_url":"https://codeload.github.com/suningrass/chasm/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/suningrass%2Fchasm/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33175211,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-18T09:27:30.708Z","status":"ssl_error","status_checked_at":"2026-05-18T09:27:28.300Z","response_time":71,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["assembly","character","cli","tui"],"created_at":"2025-10-05T20:46:28.517Z","updated_at":"2026-05-18T10:38:46.162Z","avatar_url":"https://github.com/suningrass.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# chasm — Character Assembly CLI  \n\u003e my personal, interactive command-line string / command composer.\n\nWritten in pure Go and delivered as a single binary that works out-of-the-box on **macOS** and **Windows**.  \nCore mission: **assemble the most complex commands with the fewest keystrokes**.\n[中文](README_CN.MD)\n---\n\n## ✨ Key Features\n\n1. **Smart Auto-Completion**  \n   Logic lives in `components/insidewords.go`; swap in an external `insidewords.toml` for **hot-reload without recompiling**.\n\n2. **Built-in File Navigator**  \n   Mini file browser with fuzzy search, multi-select, and `Tab` path-completion.\n\n3. **Macro Command Vault**  \n   Store once, reuse forever—macros are fully customizable.\n\n4. **Pipeline Friendly**  \n   Pipe straight to any shell: `chasm ... | sh`.\n\n5. **Clipboard Auto-Copy**  \n   Generated string is **instantly copied** to the system clipboard—`Ctrl+V` to paste \u0026 run.\n\n6. **Zero-Dependency \u0026 Cross-Platform**  \n   Single static binary built with Go 1.20+. Runs on macOS \u0026 Windows with no extras.\n\n---\n\n## 🚀 Installation\n\n```bash\n# Run source directly\ngo run main.go\n\n# Build locally\ngo build -o chasm\n\n# Install globally\ngo install\n\n🎮 Interactive Mode Cheat-Sheet\n\n| Key          | Mode         | Purpose                              |\n| ------------ | ------------ | ------------------------------------ |\n| `Tab` / `↑↓` | **CMDMOD**   | Default command input + completion   |\n| `Ctrl+P`     | **BATMODE**  | Quick-insert / search macro commands |\n| `Ctrl+O`     | **FILEMODE** | Pick files/folders (multi-select)    |\n| `Ctrl+N`     | **ARGMODE**  | Select from upstream pipe list       |\n\n\nUniversal Shortcuts\n\nShift+←/→: switch categories (BATMODE / FILEMODE)\nEnter: confirm \u0026 return to CMDMOD\nReal-time fuzzy search box always available\n\n\n📌 Typical Workflow\n\nGoal: run seed download \u003cfilepath\u003e\nLaunch chasm → CMDMOD.\nType seed → Tab to accept completion.\nAt \u003cfilepath\u003e hit Ctrl+O → FILEMODE to choose file.\nTab to select → Enter inject path → Enter exit.\nFinal command is now in clipboard; paste with Ctrl+V or run directly:\nchasm seed download /path/to/file | sh\n\n⚙️ Customization\n| Method       | File                        | Notes                               |\n| ------------ | --------------------------- | ----------------------------------- |\n| **Embedded** | `components/insidewords.go` | edit source \u0026 rebuild               |\n| **External** | `insidewords.toml`          | drop-in replacement, zero recompile |\n\n🛠️ Tech Stack\n\nLanguage: Go 1.20+\nDeps: stdlib only + tiny clipboard helper\nTerminal: ANSI \u0026 Windows Console compatible","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsuningrass%2Fchasm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsuningrass%2Fchasm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsuningrass%2Fchasm/lists"}