{"id":25602820,"url":"https://github.com/bumbelbee777/insurgent","last_synced_at":"2026-05-16T09:33:22.027Z","repository":{"id":278730704,"uuid":"934362287","full_name":"bumbelbee777/insurgent","owner":"bumbelbee777","description":"Build system + dev shell for C/C++ projects.","archived":false,"fork":false,"pushed_at":"2026-05-02T19:07:17.000Z","size":182,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-05-02T20:24:50.637Z","etag":null,"topics":["build-environment","build-system","cpp","python","python3"],"latest_commit_sha":null,"homepage":"","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/bumbelbee777.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-02-17T17:47:03.000Z","updated_at":"2026-05-02T19:07:17.000Z","dependencies_parsed_at":null,"dependency_job_id":"d2ccb488-4fe7-41cf-818a-5424a167557f","html_url":"https://github.com/bumbelbee777/insurgent","commit_stats":null,"previous_names":["bumbelbee777/insurgent"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/bumbelbee777/insurgent","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bumbelbee777%2Finsurgent","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bumbelbee777%2Finsurgent/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bumbelbee777%2Finsurgent/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bumbelbee777%2Finsurgent/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bumbelbee777","download_url":"https://codeload.github.com/bumbelbee777/insurgent/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bumbelbee777%2Finsurgent/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33096902,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-16T04:41:52.686Z","status":"ssl_error","status_checked_at":"2026-05-16T04:41:52.009Z","response_time":115,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["build-environment","build-system","cpp","python","python3"],"created_at":"2025-02-21T17:24:11.004Z","updated_at":"2026-05-16T09:33:22.022Z","avatar_url":"https://github.com/bumbelbee777.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# InsurgeNT ⚙️✨  \r\n**Integrated Native Toolkit (InsurgeNT)** – a beautiful, modern devshell + build system for C/C++ projects.\r\n\r\n[![PyPI version](https://badge.fury.io/py/insurgent.svg)](https://badge.fury.io/py/insurgent)\r\n\r\n\u003e A clean, expressive, and fast workflow for native development.  \r\n\u003e **Simple YAML configs. Stunning output. No boilerplate. No stress.**\r\n\r\n## ✨ Features\r\n\r\n- ⚡️ **Incremental builds** with parallel + async compilation\r\n- 📦 **project.yaml**-based config with automatic source/include detection\r\n- 🧠 **Intelligent project layout** and dependency tracking\r\n- 💻 **Interactive shell** with tab completion, history, and file ops\r\n- 🔧 **Multi-compiler** + cross-platform support (Linux, macOS, Windows)\r\n- 🎨 **Beautiful TUI feedback** with emoji, colors, and clean symbols\r\n\r\n## Getting Started\r\n\r\nTo start using InsurgeNT, run the shell:\r\n\r\n```\r\npython -m insurgent # or python -m int\r\n```\r\n\r\n### Build Commands\r\n\r\nInsurgeNT now supports parallel builds by default for maximum performance.\r\n\r\n```\r\n# Build all targets in parallel\r\nbuild\r\n\r\n# Build specific target\r\nbuild myapp\r\n\r\n# Build with debug symbols\r\nbuild --debug mylib\r\n\r\n# Build sequentially (non-parallel)\r\nbuild --sequential\r\n```\r\n\r\n### Unit tests (native harness)\r\n\r\nDeclare an optional `unit_tests` block in `project.yaml` (see [docs/ProjectYAML.md](docs/ProjectYAML.md)). InsurgeNT compiles sources listed there into a separate executable and runs it when you execute:\r\n\r\n```\r\ninsurgent test\r\n# or: insurgent t\r\n```\r\n\r\nFrom the interactive shell:\r\n\r\n```\r\ntest\r\n```\r\n\r\nUse `test --silent` / `test --no-incremental` in the shell, or `insurgent test --silent` / `--no-incremental` on the CLI. A non-zero exit code from the test binary is treated as failure.\r\n\r\nFor `project_type: library`, the main static library (`output`) is built first and linked into the test executable by default. Use `unit_tests.link_project: false` for a self-contained test binary, or `unit_tests.libraries` to add more archives (paths relative to the project root).\r\n\r\n## Creating a Project\r\n\r\nInsurgeNT uses YAML configuration for project definitions. Here's an example:\r\n\r\n```yaml\r\nproject: example\r\ndescription: An example project\r\nauthors: [\"John Doe\", \"Jane Doe\"]\r\nlicense: MIT\r\nversion: 0.1.0\r\nlanguage: c++\r\nstandard: c++20\r\ncompiler: g++\r\ncompiler_flags:\r\n  - global: \"-fPIC\"\r\n  - common: \"-O2 -Wall -Wextra\"\r\n  - cpp: \"-std=c++20\"\r\n  - ld: \"-lstdc++\"\r\nproject_dirs: [\"sources\"]\r\nproject_type: executable\r\noutput: bin/example\r\n\r\n# Optional bootstrap step\r\nbootstrap:\r\n  - task: prepare\r\n  - command: \"mkdir -p bin\"\r\n```\r\n\r\n## Installation\r\n\r\n```\r\npip install insurgent\r\n```\r\n\r\n### Development Setup\r\n\r\nFor development, InsurgeNT provides setup scripts to create a virtual environment and install dependencies:\r\n\r\n#### On Linux/macOS:\r\n\r\n```bash\r\n# Setup development environment\r\n./setup.sh\r\n\r\n# With additional options\r\n./setup.sh --venv=custom_venv --hooks --lint\r\n```\r\n\r\n#### On Windows:\r\n\r\n```cmd\r\n# Setup development environment\r\nsetup.bat\r\n\r\n# With additional options\r\nsetup.bat --venv=custom_venv --hooks --lint\r\n```\r\n\r\n### Linting\r\n\r\nTo run linting tools on your code:\r\n\r\n#### On Linux/macOS:\r\n\r\n```bash\r\n# Check and format code\r\n./lint.sh\r\n\r\n# Only check code (for CI)\r\n./lint.sh --check\r\n```\r\n\r\n#### On Windows:\r\n\r\n```cmd\r\n# Check and format code\r\nlint.bat\r\n\r\n# Only check code (for CI)\r\nlint.bat --check\r\n```\r\n\r\n## Usage\r\n\r\nAfter installation, you can run the development shell by executing:\r\n\r\n```\r\npython -m insurgent\r\n```\r\n\r\n### Available Commands\r\n\r\n- `ls`, `cd`, `pwd` - File navigation\r\n- `mkdir`, `touch`, `rm`, `cp` - File operations\r\n- `build \u003cproject\u003e [options]` - Build a project\r\n- `test [--silent] [--no-incremental]` - Build and run the unit test executable\r\n- `history` - Show command history\r\n\r\n## Build System\r\n\r\nInsurgeNT includes a powerful build system for C/C++ projects with features like:\r\n\r\n- Incremental builds\r\n- Dependency tracking\r\n- Multiple compiler support\r\n- Parallel and fully asynchronous compilation for maximum performance\r\n- Cross-platform compatibility\r\n\r\n## License\r\n\r\nInsurgeNT is licensed under the [MIT License](LICENSE)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbumbelbee777%2Finsurgent","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbumbelbee777%2Finsurgent","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbumbelbee777%2Finsurgent/lists"}