hashicorp/terraform — reverse-engineered prompt

Reverse engineered prompt

GitHub

Build me a command line tool like Terraform for managing infrastructure from simple configuration files. I want users to describe servers, networks, databases, and other resources in text files they can save in git and share with a team.

The tool should be able to read those files, understand the resources and their dependencies, show a clear plan of what it is going to create, change, or delete before doing anything, then apply the changes only when the user confirms. It should build a dependency graph so independent resources can run in parallel, and it should make the order of changes easy to understand.

Please include a provider plugin style system so different cloud or internal services can be added without changing the core tool. The first version can use simple mock providers so the flow works end to end. Make the CLI feel polished, with helpful errors, basic tests, and clear docs. Look up current docs online if you need to.

Want more depth? Deep Reverse