Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ This repository contains a _collection_ of Features.
| zizmor | https://github.com/zizmorcore/zizmor | Static security analysis for GitHub Actions workflows. |
| open-code-review | https://github.com/alibaba/open-code-review | CLI-oriented code review tool for diffs with deterministic checks plus optional LLM review. |
| SkillSpector | https://github.com/NVIDIA/SkillSpector | Standalone security scanner for local AI-agent skill/config files; useful only if you want an AI-dev-security feature. |
| herdr | https://github.com/ogulcancelik/herdr | Fast, cross-platform CLI tool distributed as a static binary via GitHub releases. |
| herdr | https://github.com/herdrdev/herdr | Fast, cross-platform CLI tool distributed as a static binary via GitHub releases. |
| officecli | https://github.com/iOfficeAI/OfficeCLI | AI-friendly CLI to read, edit, and automate Word, Excel, and PowerPoint files — single static binary, no Office install required. |
| strix | https://github.com/usestrix/strix | Open-source AI penetration testing tool to find and fix your app's vulnerabilities. |
| colibri | https://github.com/JustVugg/colibri | Run GLM-5.2 (744B MoE) on a consumer machine — pure C, zero deps, experts streamed from disk. |
Expand Down
2 changes: 1 addition & 1 deletion src/herdr/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

# herdr (herdr)

herdr is a fast, cross-platform CLI tool from ogulcancelik/herdr distributed as a static binary via GitHub releases.
herdr is a fast, cross-platform CLI tool from herdrdev/herdr distributed as a static binary via GitHub releases.

## Example Usage

Expand Down
2 changes: 1 addition & 1 deletion src/herdr/devcontainer-feature.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "herdr",
"id": "herdr",
"version": "1.0.0",
"description": "herdr is a fast, cross-platform CLI tool from ogulcancelik/herdr distributed as a static binary via GitHub releases.",
"description": "herdr is a fast, cross-platform CLI tool from herdrdev/herdr distributed as a static binary via GitHub releases.",
"options": {
"version": {
"type": "string",
Expand Down
4 changes: 2 additions & 2 deletions src/herdr/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set -e

# Variables
REPO_OWNER="ogulcancelik"
REPO_OWNER="herdrdev"
REPO_NAME="herdr"
BINARY_NAME="herdr"

Expand Down Expand Up @@ -32,7 +32,7 @@ check_packages curl ca-certificates jq tar
# Function to get the latest version from GitHub API
get_latest_version() {
LATEST_URL="https://api.github.com/repos/$REPO_OWNER/$REPO_NAME/releases/latest"
curl -s "$LATEST_URL" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/'
curl -sL "$LATEST_URL" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/'
}

# Resolve version
Expand Down
Loading