From 032e1e2ef06649e15bd2905a825da5abbd3ae9df Mon Sep 17 00:00:00 2001 From: Nick Denny Date: Thu, 9 Jul 2026 15:14:10 -0700 Subject: [PATCH 1/2] Enhance README with documentation and attribution Added documentation link and APIContext Inc attribution. --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5fcd4e8..e44b9d9 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,10 @@ # APImetrics CLI -A command-line interface for managing API monitors, schedules, SLOs, and more on the [APImetrics](https://apimetrics.io) platform. +A command-line interface for managing API monitors, schedules, SLOs, and more on the [APImetrics](https://apimetrics.io) platform, by [APIContext Inc](https://apicontext.com). + +## Documentation + +For more information, please visit our main documentation site, available at [https://docs.apicontext.com/cli](https://docs.apicontext.com/cli). ## Getting Started From c5746ee658201a0864f9192b804d33add23316b6 Mon Sep 17 00:00:00 2001 From: ndenny Date: Thu, 9 Jul 2026 15:26:55 -0700 Subject: [PATCH 2/2] Add install docs and support info --- README.md | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/README.md b/README.md index e44b9d9..c8c1e8e 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,42 @@ A command-line interface for managing API monitors, schedules, SLOs, and more on For more information, please visit our main documentation site, available at [https://docs.apicontext.com/cli](https://docs.apicontext.com/cli). + +## Installation + +## Manual installation + +The binaries for the APImetrics CLI can be downloaded from the [releases page](https://github.com/APImetrics/APImetrics-cli/releases). Choose the appropriate version for your operating system and put the executable in your path for easy access from the command line. + +## MacOS + +You can install the APImetrics CLI using Homebrew: + +```bash +brew install apicontext/tap/apimetrics-cli +``` + +## Windows - Coming soon! + +> Note: Coming soon, not available yet + +You can install the APImetrics CLI using the Windows Package Manager (winget): + +```powershell +winget install APImetrics.APImetricsCLI +``` + +## Linux + +You can install the APImetrics CLI by downloading the binary from the [releases page](https://github.com/APImetrics/APImetrics-cli/releases). + +```bash +curl -LO https://github.com/APImetrics/APImetrics-cli/releases/latest/download/apimetrics-[version]-linux-amd64.tar.gz +tar -xzf apimetrics-[version]-linux-amd64.tar.gz +sudo mv apimetrics /usr/local/bin/apimetrics +``` +Note: [version] should be replaced with the specific version you want to download, e.g., `0.0.1`. + ## Getting Started ### 1. Log in @@ -186,3 +222,11 @@ apimetrics logout ``` This removes cached tokens. Run `apimetrics login` again to re-authenticate. + +# Issues and Contributing + +For support questions, visit [APImetrics Support](https://apicontext.com/support) and open a request. + +For reporting bugs or requesting features, please open an issue on the [GitHub repository](https://github.com/APImetrics/APImetrics-cli/issues). + +We welcome contributions! Feel free to fork the repository, make changes, and submit pull requests.