├── .github └── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml └── README.md /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- 1 | name: "🐛 Bug Report" 2 | description: "If something isn't working as expected 🤔." 3 | labels: ["bug"] 4 | body: 5 | - type: markdown 6 | attributes: 7 | value: Thanks for taking the time to file a bug report! Please fill out this form as completely as possible. 8 | 9 | - type: textarea 10 | attributes: 11 | label: Current and expected behavior 12 | description: What is claws doing and what you would expect instead? 13 | validations: 14 | required: true 15 | 16 | - type: textarea 17 | attributes: 18 | label: Environment & Operating System 19 | description: | 20 | What OS are you using? What AWS CLI version do you have installed? 21 | placeholder: | 22 | macOS Catalina? Windows 10? Ubuntu Linux? 23 | 2.12.1? 2.11.0? 24 | validations: 25 | required: true -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | contact_links: 3 | - name: 🙋🏾 Question 4 | url: https://github.com/clawsapp/claws/discussions/new 5 | about: Use this link to submit your question to GitHub Discussions. -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- 1 | name: "🚀 Feature Request" 2 | description: "I have a suggestion for claws!" 3 | labels: ["feature request"] 4 | body: 5 | - type: markdown 6 | attributes: 7 | value: Thanks for taking the time to suggest a new feature! 8 | 9 | - type: textarea 10 | attributes: 11 | label: What problem are you trying to solve? Do you have a suggestion for how to solve it? 12 | validations: 13 | required: true -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![](https://clawsapp.com/assets/images/share.jpg) 2 | 3 | ## Features 4 | 5 | - 👤 Securely manage local AWS profiles 6 | - 🛝 Visually explore and execute AWS CLI commands 7 | - ✨ Experiment with Amazon Bedrock AI prompts and parameters 8 | - 🔎 Search for CLI commands using natural language 9 | - 🔒 Identify required IAM permissions for a command 10 | - 🎉 Plays nicely with existing processes and workflows 11 | - 😉 **NOT** another Electron app 12 | - 💻 Available on Windows, macOS and Linux 13 | 14 | Visit [https://clawsapp.com](https://clawsapp.com?utm_campaign=github_readme) to learn more. 15 | 16 | ## Download 17 | 18 | - [Download claws](https://clawsapp.com) 19 | - [Past releases & changelog](https://github.com/clawsapp/claws/releases) 20 | 21 | ## Need help? 22 | 23 | - Find us on [Twitter](https://twitter.com/clawsapp) 24 | - Open a Github issue or a discussion 25 | - Shoot us an email: hello@clawsapp.com 26 | 27 | --- 28 | 29 | ❤️ Love claws? [Give us a shoutout](https://senja.io/p/claws-SBq/r/kiIhz1)! 30 | --------------------------------------------------------------------------------