{"id":28682536,"url":"https://github.com/cambriantech/cyberpunk-cli","last_synced_at":"2025-06-14T02:40:32.276Z","repository":{"id":296763548,"uuid":"994393870","full_name":"CambrianTech/cyberpunk-cli","owner":"CambrianTech","description":null,"archived":false,"fork":false,"pushed_at":"2025-06-02T01:54:10.000Z","size":89,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-02T07:29:07.716Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/CambrianTech.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-06-01T20:55:17.000Z","updated_at":"2025-06-02T01:54:14.000Z","dependencies_parsed_at":"2025-06-02T07:39:15.920Z","dependency_job_id":null,"html_url":"https://github.com/CambrianTech/cyberpunk-cli","commit_stats":null,"previous_names":["cambriantech/cyberpunk-cli"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/CambrianTech/cyberpunk-cli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CambrianTech%2Fcyberpunk-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CambrianTech%2Fcyberpunk-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CambrianTech%2Fcyberpunk-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CambrianTech%2Fcyberpunk-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CambrianTech","download_url":"https://codeload.github.com/CambrianTech/cyberpunk-cli/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CambrianTech%2Fcyberpunk-cli/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259750691,"owners_count":22905933,"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","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-06-14T02:40:31.361Z","updated_at":"2025-06-14T02:40:32.271Z","avatar_url":"https://github.com/CambrianTech.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Cyberpunk CLI\n\nProfessional terminal interface framework with retro-futuristic themes.\n\n**[Try the Live Demo →](https://cambriantech.github.io/cyberpunk-cli/)**\n\n## Quick Start\n\n```bash\npip install cyberpunk-cli\n```\n\n```python\nfrom cyberpunk_cli import CyberpunkMenu\n\nmenu = CyberpunkMenu(\"My App\")\nmenu.add_option(\"deploy\", \"Deploy\", \"Deploy to production\")\nmenu.add_option(\"test\", \"Test\", \"Run test suite\") \nmenu.add_exit()\n\nchoice = menu.run()\n```\n\n## Features\n\n- **4 retro themes** - Loki, Matrix, Fallout, Tron\n- **Mouse support** - Click to select, double-click to execute\n- **Keyboard navigation** - Arrow keys, Enter, numbers\n- **Theme switching** - Ctrl+T to cycle themes\n- **Click integration** - Works with existing Click CLIs\n\n## Themes\n\n### Loki (default)\nGreen/gold Norse mythology aesthetic with Asgardian terminal styling.\n\n### Matrix  \nDigital rain with green code and neural network terminology.\n\n### Fallout\nVault-Tec amber terminal with retro-futuristic post-apocalyptic design.\n\n### Tron\nNeon blue cyberpunk grid with light cycle inspired interface.\n\n## API\n\n### Basic Menu\n```python\nfrom cyberpunk_cli import CyberpunkMenu\n\nmenu = CyberpunkMenu(\"App Name\", theme=\"matrix\")\nmenu.add_option(\"id\", \"Display Name\", \"Description\")\nmenu.add_separator()\nmenu.add_exit(\"Quit\", \"Exit application\")\n\nchoice = menu.run()\n```\n\n### Click Integration\n```python\nfrom cyberpunk_cli import theme_manager\nimport click\n\n# Auto-enhance any Click CLI\ntheme_manager.set_theme(\"loki\")\n\n@click.command()\n@click.option('--env', help='Environment')  \ndef deploy(env):\n    print(f\"Deploying to {env}\")\n```\n\n### Theme Control\n```python\nfrom cyberpunk_cli import theme_manager\n\n# Set theme\ntheme_manager.set_theme(\"fallout\")\n\n# List available themes\nthemes = theme_manager.list_themes()\n# ['loki', 'matrix', 'fallout', 'tron']\n```\n\n## Usage\n\n### Navigation\n- **↑↓** Navigate options\n- **Enter** Execute selected\n- **1-9** Direct selection  \n- **Click** Select option\n- **Double-click** Execute immediately\n- **Ctrl+T** Switch themes\n- **ESC/Q** Exit\n\n### Input Methods\nAll input methods work simultaneously - use whatever feels natural.\n\n## Requirements\n\n- Python 3.8+\n- Modern terminal with mouse support\n- Rich and Click libraries (auto-installed)\n\n## License\n\nMIT License - see LICENSE file.\n\n---\n\nBuilt by [Cambrian](https://github.com/CambrianTech)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcambriantech%2Fcyberpunk-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcambriantech%2Fcyberpunk-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcambriantech%2Fcyberpunk-cli/lists"}