Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ body:
attributes:
value: |
Thanks for proposing a feature. flux is the LLM client + skill router
that backs the rho-eco ecosystem. Every feature is evaluated against
that backs the graycode-eco ecosystem. Every feature is evaluated against
whether it serves **a single developer** running an AI agent locally.

Before submitting:
Expand Down Expand Up @@ -65,6 +65,6 @@ body:
description: flux avoids enterprise scope. Confirm this feature respects that.
options:
- label: Works with zero configuration (sensible defaults).
- label: Does not require a network call to a rho-eco service.
- label: Does not require a network call to a graycode-eco service.
- label: Stores any state locally by default.
- label: Has an escape hatch (override via flag, env, or config).
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Strict CI pipeline for rho-eco Go repos.
# Strict CI pipeline for graycode-eco Go repos.
# All jobs must pass — no continue-on-error except where explicitly noted.

name: CI
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ v0.0.1 of `github.com/GrayCodeAI/flux`.
5. Whitespace collapse
Reports aggregate `BytesSaved` and `PercentOff` across all tools
in the slice. Safe to call concurrently.
Aligns flux with the rest of the rho-eco ecosystem.
Aligns flux with the rest of the graycode-eco ecosystem.

### Added
- Output guardrails framework (PII, secrets, injection, harmful content)
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Canonical rho-eco Makefile for Go LIBRARY repos.
# Canonical graycode-eco Makefile for Go LIBRARY repos.
# flux is a versioned Go library consumed by Rho (no standalone binary).

# ---------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion client/extract_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
func TestFilterRelationships_DropsEmpty(t *testing.T) {
t.Parallel()
in := []Relationship{
{Subject: "flux", Predicate: "part_of", Object: "rho-eco"},
{Subject: "flux", Predicate: "part_of", Object: "graycode-eco"},
{Subject: "", Predicate: "x", Object: "y"}, // empty subject
{Subject: "a", Predicate: " ", Object: "b"}, // blank predicate
{Subject: "c", Predicate: "rel", Object: ""}, // empty object
Expand Down
2 changes: 1 addition & 1 deletion lefthook.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Canonical lefthook config for rho-eco Go repos.
# Canonical lefthook config for graycode-eco Go repos.
# Source of truth: .shared-templates/lefthook.yml.tmpl
#
# Install lefthook:
Expand Down
Loading