{"id":50721222,"url":"https://github.com/codeforester/base-platform-tools","last_synced_at":"2026-06-10T00:01:38.463Z","repository":{"id":362958133,"uuid":"1261438975","full_name":"codeforester/base-platform-tools","owner":"codeforester","description":"Optional platform engineering, SRE, infrastructure, cloud, monitoring, and operational utility tools for Base-managed workspaces.","archived":false,"fork":false,"pushed_at":"2026-06-06T18:10:38.000Z","size":23,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-06T19:14:25.981Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","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/codeforester.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","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":"2026-06-06T17:27:01.000Z","updated_at":"2026-06-06T18:10:41.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/codeforester/base-platform-tools","commit_stats":null,"previous_names":["codeforester/base-platform-tools"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/codeforester/base-platform-tools","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeforester%2Fbase-platform-tools","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeforester%2Fbase-platform-tools/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeforester%2Fbase-platform-tools/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeforester%2Fbase-platform-tools/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codeforester","download_url":"https://codeload.github.com/codeforester/base-platform-tools/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeforester%2Fbase-platform-tools/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34130642,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-09T02:00:06.510Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2026-06-10T00:01:37.549Z","updated_at":"2026-06-10T00:01:38.426Z","avatar_url":"https://github.com/codeforester.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Base Platform Tools\n\nBase Platform Tools is the home for optional platform engineering, SRE,\ninfrastructure, cloud, monitoring, diagnostics, and operational utility CLIs\nthat can be used inside Base-managed workspaces.\n\nThis repository exists so the core Base product can stay focused on workstation\norchestration while platform-specific tools can evolve independently.\n\n## Relationship To Base\n\nBase owns the workstation control plane:\n\n- project discovery\n- setup, check, doctor, test, run, demo, and activation contracts\n- manifest parsing and validation\n- workspace and repository conventions\n- cross-platform support for macOS, Linux, WSL, and eventually native Windows\n\nBase Platform Tools owns optional utility commands that support platform,\ninfrastructure, SRE, cloud, monitoring, and operational workflows.\n\nThe boundary is intentional:\n\n\u003e Base orchestrates the workspace. Base Platform Tools provides optional tools\n\u003e that Base can orchestrate.\n\n## Current Status\n\nThis repository is in its early stage. It has the initial CLI layout and hosts\nthe first migrated Bash utility CLIs from Base:\n\n- `caff`\n- `sort-in-place`\n\n## Getting Started\n\nClone this repository next to Base:\n\n```bash\ngit clone https://github.com/codeforester/base-platform-tools.git\n```\n\nWhen Base is installed and the workspace is configured, this project should be\ndiscoverable through:\n\n```bash\nbasectl projects list\n```\n\nRun the repository validation directly:\n\n```bash\ntests/validate.sh\n```\n\nOr through Base:\n\n```bash\nbasectl test base-platform-tools\n```\n\nList the commands declared by this repository:\n\n```bash\nbasectl run base-platform-tools --list\n```\n\nRun the migrated utilities through Base:\n\n```bash\nbasectl run base-platform-tools caff -- --help\nbasectl run base-platform-tools sort-in-place -- --help\n```\n\n## What Belongs Here\n\nGood candidates for this repository include:\n\n- cloud inventory and reporting tools\n- Kubernetes and container platform diagnostics\n- monitoring and alerting helpers\n- incident-response utilities\n- infrastructure drift checks\n- platform runbook automation\n- operational data collection tools\n\nEach tool should have a clear operational purpose, documented platform support,\ntests, and a manifest-declared command when it is ready for Base orchestration.\n\n## What Does Not Belong Here\n\nThis repository should not become a generic script collection.\n\nKeep these outside Base Platform Tools:\n\n- Base core orchestration behavior\n- project-specific application logic\n- one-off personal scripts\n- utilities without tests or a documented operational use case\n- commands that require secret values to be printed, stored, or logged\n\n## Repository Layout\n\n```text\n.\n├── bin/\n│   ├── README.md\n│   ├── caff\n│   └── sort-in-place\n├── base_manifest.yaml\n├── cli/\n│   ├── README.md\n│   ├── bash/\n│   │   ├── README.md\n│   │   └── commands/\n│   │       ├── caff/\n│   │       └── sort-in-place/\n│   └── python/\n│       ├── README.md\n│       └── base_platform_tools/\n│           └── __init__.py\n├── docs/\n│   ├── cli-layout.md\n│   └── tooling-boundary.md\n├── tests/\n│   └── validate.sh\n├── CHANGELOG.md\n├── CONTRIBUTING.md\n├── LICENSE\n└── README.md\n```\n\nFuture tools should live under the seeded CLI structure, with per-tool\nsubdirectories added when the first real tool is migrated or created.\n\nSee [CLI Layout](docs/cli-layout.md) for the command structure and launcher\nconventions.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodeforester%2Fbase-platform-tools","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodeforester%2Fbase-platform-tools","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodeforester%2Fbase-platform-tools/lists"}