{"id":26048867,"url":"https://github.com/starbops/todoissh","last_synced_at":"2026-05-15T22:04:16.933Z","repository":{"id":280568530,"uuid":"942432431","full_name":"starbops/todoissh","owner":"starbops","description":"Your To Do app, accessed via SSH over the network","archived":false,"fork":false,"pushed_at":"2025-03-09T12:02:04.000Z","size":88,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-05T23:49:00.104Z","etag":null,"topics":["docker","golang","ssh","terminal-based","todo-app"],"latest_commit_sha":null,"homepage":"ssh://todoissh.zespre.com","language":"Go","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/starbops.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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-03-04T05:15:28.000Z","updated_at":"2025-03-10T15:37:25.000Z","dependencies_parsed_at":"2025-03-04T06:24:58.755Z","dependency_job_id":"145c21d5-71a2-42a3-8ee8-1f938d77989f","html_url":"https://github.com/starbops/todoissh","commit_stats":null,"previous_names":["starbops/todoissh"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/starbops/todoissh","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/starbops%2Ftodoissh","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/starbops%2Ftodoissh/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/starbops%2Ftodoissh/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/starbops%2Ftodoissh/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/starbops","download_url":"https://codeload.github.com/starbops/todoissh/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/starbops%2Ftodoissh/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278903011,"owners_count":26065786,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-08T02:00:06.501Z","response_time":56,"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":["docker","golang","ssh","terminal-based","todo-app"],"created_at":"2025-03-08T00:28:52.459Z","updated_at":"2025-10-08T06:46:01.945Z","avatar_url":"https://github.com/starbops.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TodoiSSH\n\n[![CI](https://github.com/starbops/todoissh/actions/workflows/ci.yml/badge.svg)](https://github.com/starbops/todoissh/actions/workflows/ci.yml)\n[![Go Version](https://img.shields.io/github/go-mod/go-version/starbops/todoissh)](https://go.dev)\n[![License](https://img.shields.io/github/license/starbops/todoissh)](LICENSE)\n\nA multi-user todo list application accessible via SSH with a clean terminal interface. Create your personal account, manage your tasks from anywhere, and enjoy the security of isolated user data.\n\n## Quick Start\n\n### Using Docker (Recommended)\n\n```bash\n# Run the container\ndocker run -d -p 2222:2222 starbops/todoissh\n\n# Connect with your username\nssh yourname@localhost -p 2222\n```\n\n### Running Locally\n\n```bash\n# Clone and build\ngit clone https://github.com/starbops/todoissh.git\ncd todoissh\nmake all\n\n# Start the server\n./bin/todoissh\n\n# Connect with your username\nssh yourname@localhost -p 2222\n```\n\n## Features\n\n- **Multi-User Support** - Each user has their own private todo list with secure authentication\n- **Terminal UI** - Clean, intuitive interface optimized for keyboard navigation\n- **Data Persistence** - Your todos are saved between sessions\n- **Secure Design** - Password hashing with bcrypt and data isolation between users\n- **Accessible Anywhere** - Connect via any SSH client, even on mobile devices\n\n## Usage\n\n### First-Time Connection\n\nWhen connecting with a new username, you'll be guided through a simple registration:\n\n```\nWelcome to TodoiSSH!\n────────────────────────────────────────────────────────────────────────────────\n\nHello, newuser! You need to complete registration.\n\nPlease set a password for your account.\nPassword must be at least 6 characters long.\n\nPassword: ******\n```\n\n### Managing Your Todos\n\nAfter authentication, you'll see your personal todo list with full keyboard controls:\n\n```\nTodo List - User: myusername\n────────────────────────────────────────────────────────────────────────────────\nCommands: ↑/↓: Navigate • Space: Toggle • Enter: Edit • Tab: New • Delete: Remove • Ctrl+C: Exit\n\n[ ] Buy groceries\n[✓] Finish documentation\n[ ] Fix bug in registration flow\n[ ] Add unit tests\n\n────────────────────────────────────────────────────────────────────────────────\n```\n\n**Keyboard Controls:**\n- ↑/↓: Navigate through todos\n- Space: Toggle completion status\n- Enter: Edit selected todo\n- Tab: Create new todo\n- Delete: Remove selected todo\n- Ctrl+C: Exit application\n\n## Advanced Usage\n\n### Using Docker with Persistent Storage\n\n```bash\n# Create a volume for persistent storage\ndocker volume create todoissh-data\n\n# Run with the volume mounted\ndocker run -d -p 2222:2222 -v todoissh-data:/app/data todoissh\n```\n\n### Custom Configuration\n\n```bash\n# Run with a custom port\n./bin/todoissh --port 2223\n\n# Enable debug logging\n./bin/todoissh --debug\n```\n\n## Development\n\n### Project Structure\n\n```\ntodoissh/\n├── main.go              # Application entry point\n├── pkg/                 # Application packages\n│   ├── config/          # Configuration management\n│   ├── ssh/             # SSH server implementation\n│   ├── todo/            # Todo list data structure\n│   └── ui/              # Terminal user interface\n├── test/                # Test files and reports\n└── scripts/             # Build and test scripts\n```\n\n### Testing\n\n```bash\n# Run all tests\nmake test\n\n# Run specific package tests\ngo test ./pkg/todo\n```\n\nSee [test/README.md](test/README.md) for detailed testing information.\n\n## Security Note\n\n- User authentication with bcrypt password hashing\n- Data isolation between users\n- SSH host key generation and management\n- Docker container runs as non-root user\n\n## License\n\nApache License 2.0. See [LICENSE](LICENSE) for details.\n\n## Built With\n\n- Go 1.24+\n- [Cursor](https://cursor.sh/) - The AI-first code editor\n- Claude 3.5 Sonnet - Advanced AI assistant\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstarbops%2Ftodoissh","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstarbops%2Ftodoissh","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstarbops%2Ftodoissh/lists"}