{"id":16162921,"url":"https://github.com/fabriziosalmi/devgpt","last_synced_at":"2025-07-15T05:37:48.504Z","repository":{"id":206719254,"uuid":"717546456","full_name":"fabriziosalmi/DevGPT","owner":"fabriziosalmi","description":"Code togheter, right now! GPT powered code assistant to build project in minutes","archived":false,"fork":false,"pushed_at":"2025-02-26T20:21:51.000Z","size":638,"stargazers_count":65,"open_issues_count":0,"forks_count":6,"subscribers_count":8,"default_branch":"main","last_synced_at":"2025-04-19T09:06:25.175Z","etag":null,"topics":["ai","ai-developer-tools","ai-development","ai-development-tools","assistant","chatbot","chatgpt","developer","developer-tool","developer-tools","development","development-environment","development-workflow","gpt","gpt4"],"latest_commit_sha":null,"homepage":"https://chat.openai.com/g/g-eN7HtAqXW-code-togheter","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fabriziosalmi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":["fabriziosalmi"]}},"created_at":"2023-11-11T19:50:17.000Z","updated_at":"2025-03-12T15:50:32.000Z","dependencies_parsed_at":"2023-11-15T13:26:33.747Z","dependency_job_id":"33371660-ad1b-4336-82aa-b97997be2227","html_url":"https://github.com/fabriziosalmi/DevGPT","commit_stats":null,"previous_names":["fabriziosalmi/devgpt"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/fabriziosalmi/DevGPT","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabriziosalmi%2FDevGPT","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabriziosalmi%2FDevGPT/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabriziosalmi%2FDevGPT/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabriziosalmi%2FDevGPT/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fabriziosalmi","download_url":"https://codeload.github.com/fabriziosalmi/DevGPT/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabriziosalmi%2FDevGPT/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265411112,"owners_count":23760562,"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":["ai","ai-developer-tools","ai-development","ai-development-tools","assistant","chatbot","chatgpt","developer","developer-tool","developer-tools","development","development-environment","development-workflow","gpt","gpt4"],"created_at":"2024-10-10T02:33:53.930Z","updated_at":"2025-07-15T05:37:48.451Z","avatar_url":"https://github.com/fabriziosalmi.png","language":null,"readme":"# Code Together\n\n*Formerly known as DevGPT, rebranded due to OpenAI policy changes.*\n\n## Latest Updates\n\n- **New ML-Focused Version**: Discover our enhanced version for building machine learning projects and pipelines [here](https://chatgpt.com/g/g-vNaToz870-code-togheter-ml).\n- **OpenWebUI Prompt**: Access the OpenWebUI prompt [here](https://openwebui.com/p/fabspace/devgpt), compatible with models like Stable-Code-3B, Llama-3-8B, WizardLM2-7B, Mistral, GPT3.5, and GPT4o.\n\n## [Try It Now](https://chat.openai.com/g/g-eN7HtAqXW-devgpt)\n\n![DevGPT](https://raw.githubusercontent.com/fabriziosalmi/DevGPT/refs/heads/main/DevGPT.png)\n\n## How to Use\n\nFollow this guide to get started with Code Together:\n\n1. **Initialize a Project**: Use the `/project` command followed by the project name and description.  \n   Example:  \n   ```bash\n   /project MyApp \"My application is a simple chatbot using the GPT2 Italian model\"\n   ```\n2. **Complete Your Files**: Review the project structure and use `/complete filename` to generate the necessary files.\n3. **Finish and Refine**: Use additional commands like `/improve`, `/logs`, `/debug`, or `/dim` to enhance and finalize your project.\n\n### Additional Tips\n\n- **Improve a File**: Type `/improve` followed by the file content to enhance a specific file.\n- **Add Logging**: Use `/logs` to insert logging and debugging snippets.\n- **Resource Estimation**: Estimate compute resources required with `/dim`.\n- **Generate a README**: Create a project README with `/repo`.\n\n...and much more! Code Together is continuously evolving to meet all your development needs.\n\n## Full Command List\n\n| Command     | Description                                                                                               | Example Use                                                    |\n|-------------|-----------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------|\n| `/project`  | Initialize a new project with a name and description.                                                      | `/project MyApp \"My application is a simple chatbot\"`            |\n| `/list`     | List all needed files for the project in a Linux environment.                                              | `/list`                                                       |\n| `/setup`    | Propose `main` and `requirements.txt` files with full code.                                                | `/setup`                                                      |\n| `/env`      | List required imports, libraries, and environment setup steps (Linux only).                                | `/env`                                                       |\n| `/dim`      | Calculate the minimum RAM and HDD space required to run the project.                                       | `/dim`                                                       |\n| `/split`    | Modularize a single code snippet or file into multiple files.                                              | `/split` (after providing a large code block)               |\n| `/log`      | Add logging to the existing code.                                                                          | `/log` (after selecting or providing code)                    |\n| `/docs`     | Explain the functions and libraries used in the latest code snippet.                                       | `/docs` (after providing code)                               |\n| `/debug`    | Add debugging code to troubleshoot issues.                                                                 | `/debug` (after selecting or providing code)                    |\n| `/exec`     | Simulate running the code and display the output.                                                          | `/exec` (after setting up the required files and env.) |\n| `/improve`  | Optimize and enhance the existing code.                                                                    | `/improve` (after selecting or providing code)                    |\n| `/complete` | Generate a complete script for a specific file.                                                            | `/complete my_file.py`                                           |\n| `/order`    | Provide the order of file execution to test the project.                                                   | `/order`                                                      |\n| `/adapt`    | Update all existing files to accommodate recent changes.                                                   | `/adapt` (after modifying one file)                           |\n| `/use`      | Explain how to run, use, or test the project.                                                              | `/use`                                                       |\n| `/repo`     | Generate a README.md file for GitHub with all necessary project information.                               | `/repo`                                                       |\n| `/fix`      | Attempt to make the script work using an alternative approach.                                             | `/fix` (when existing code doesn't work)                       |\n| `/thanks`   | Encourage users to support the project by starring the GitHub repository.                                  | `/thanks`                                                      |\n\n## Example Uses\n\nShare your creations! I love to feature them in the \"Wall of Fame\" 😊\n\n### Starter Apps:\n\n- [Create a Simple Blockchain](https://chat.openai.com/share/f6f1a789-0a1e-4648-90c9-88ba36e40389)\n- [Manage DNS with DNSControl and GitHub Actions](https://chat.openai.com/share/3ccd6a94-6ca6-4ee9-b76c-db48cfca2646)\n- [Fine-Tune GPT2 LLM Model](https://chat.openai.com/share/f3c41438-47be-49ed-9800-d7c78d90f75d)\n- [ScamTracker: Pattern Matching in the Stock Market (PoC)](https://chat.openai.com/share/eb8e3a42-b8c5-4abe-9ab5-b5f83904de60)\n- [HTML Bootstrap Skeleton for Beginners](https://chat.openai.com/share/e927387f-75a6-4501-b204-4647e317851b)\n- [AI-Enhanced Real Estate Valuation (AIREV)](https://chat.openai.com/share/1bcf9abc-ccf9-4543-aa57-09548921f338)\n\n### Built in Minutes with DevGPT:\n\n- [Ethical AI Automated Assessment using GitHub Actions and OpenAI API](https://github.com/fabriziosalmi/EthicalAI/tree/main)\n\n## Contributing\n\nContributions are welcome! Please read the [contributing guidelines](CONTRIBUTING.md) for more details on how to get involved.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## Contact\n\nFor questions, issues, or feedback, please [open an issue](https://github.com/fabriziosalmi/DevGPT/issues).\n","funding_links":["https://github.com/sponsors/fabriziosalmi"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffabriziosalmi%2Fdevgpt","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffabriziosalmi%2Fdevgpt","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffabriziosalmi%2Fdevgpt/lists"}