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/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,11 @@ jobs:
html.write_text(s.replace('</head>', snippet + '</head>', 1))
PY

- name: Deploy to Agentiix.github.io
- name: Deploy to Agentix-Project.github.io
uses: peaceiris/actions-gh-pages@v4
with:
personal_token: ${{ secrets.DOCS_DEPLOY_TOKEN }}
external_repository: Agentiix/Agentiix.github.io
external_repository: Agentix-Project/Agentix-Project.github.io
publish_branch: main
publish_dir: docs/_site
force_orphan: true
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2026 Agentiix
Copyright (c) 2026 Agentix

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
8 changes: 4 additions & 4 deletions docs/DEPLOY.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
# Docs deploy

For maintainers. The public docs site at **`https://agentiix.github.io/`**
For maintainers. The public docs site at **`https://agentix-project.github.io/`**
is built from the [`docs/`](.) directory with
[Mintlify](https://mintlify.com) and self-hosted on GitHub Pages.

The [`docs.yml`](../.github/workflows/docs.yml) workflow runs on every
push that touches `docs/**`:

```text
mint validate (strict) → mint export (static Next.js site) → push to Agentiix/Agentiix.github.io
mint validate (strict) → mint export (static Next.js site) → push to Agentix-Project/Agentix-Project.github.io
```

The one-time setup below wires up that cross-repo push. Once it's done,
day-to-day work is just [editing pages](#adding-a-page) and pushing.

## One-time setup

1. **Create the sibling repo `Agentiix/Agentiix.github.io`** (public,
1. **Create the sibling repo `Agentix-Project/Agentix-Project.github.io`** (public,
empty). GitHub Pages serves any repo named `<org>.github.io` at
`<org>.github.io/` automatically.

Expand All @@ -25,7 +25,7 @@ day-to-day work is just [editing pages](#adding-a-page) and pushing.

3. **Create a deploy token.** Generate a fine-grained personal access
token (Settings → Developer settings → Fine-grained tokens) with:
- *Repository access*: only `Agentiix/Agentiix.github.io`
- *Repository access*: only `Agentix-Project/Agentix-Project.github.io`
- *Permissions*: **Contents: Read and write**

4. **Add the token as a secret on this repo.** Settings → Secrets and
Expand Down
2 changes: 1 addition & 1 deletion docs/development.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ dataset package, start with [integrate an agent](/integrate-agent) or
## Setup

```bash
git clone https://github.com/Agentiix/Agentix.git
git clone https://github.com/Agentix-Project/Agentix.git
cd Agentix
uv sync --all-packages --all-extras
```
Expand Down
6 changes: 3 additions & 3 deletions docs/docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,17 +45,17 @@
"links": [
{
"label": "Cookbook",
"href": "https://github.com/Agentiix/agentix-cookbook"
"href": "https://github.com/Agentix-Project/agentix-cookbook"
},
{
"label": "GitHub",
"href": "https://github.com/Agentiix/Agentix"
"href": "https://github.com/Agentix-Project/Agentix"
}
]
},
"footer": {
"socials": {
"github": "https://github.com/Agentiix/Agentix"
"github": "https://github.com/Agentix-Project/Agentix"
}
}
}
2 changes: 1 addition & 1 deletion docs/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ benchmark scorer, or a full RL rollout step.
## Example Rollout

Start with the complete runnable demo in `examples/hello-world`
(see the [agentix-cookbook](https://github.com/Agentiix/agentix-cookbook/tree/main/examples)
(see the [agentix-cookbook](https://github.com/Agentix-Project/agentix-cookbook/tree/main/examples)
for more examples):

```bash
Expand Down
2 changes: 1 addition & 1 deletion docs/integrate-agent.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ the executable into `bin/`. During `agentix build`, Agentix links those
binaries under `/nix/runtime/bin` in the final image.

See the
[`plugins/agents/claude-code`](https://github.com/Agentiix/Agentix/tree/master/plugins/agents/claude-code)
[`plugins/agents/claude-code`](https://github.com/Agentix-Project/Agentix/tree/master/plugins/agents/claude-code)
recipe for a complete working package.

## 5. Caller Composition
Expand Down
2 changes: 1 addition & 1 deletion docs/integrate-dataset.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ SWE-bench, lean on the official package for test specs, log parsing, and
grading instead of reimplementing benchmark rules.

See
[`plugins/datasets/swebench`](https://github.com/Agentiix/Agentix/tree/master/plugins/datasets/swebench)
[`plugins/datasets/swebench`](https://github.com/Agentix-Project/Agentix/tree/master/plugins/datasets/swebench)
for a full working scorer.

## 4. Packaging
Expand Down
4 changes: 2 additions & 2 deletions docs/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -237,10 +237,10 @@ mounted cache puts them.
## Next

<CardGroup cols={2}>
<Card title="Example: hello-world" icon="book" href="https://github.com/Agentiix/Agentix/tree/master/examples/hello-world">
<Card title="Example: hello-world" icon="book" href="https://github.com/Agentix-Project/Agentix/tree/master/examples/hello-world">
The complete in-repo project used here (`examples/hello-world`).
</Card>
<Card title="More examples (cookbook)" icon="flask" href="https://github.com/Agentiix/agentix-cookbook/tree/main/examples/eval-cc-swe">
<Card title="More examples (cookbook)" icon="flask" href="https://github.com/Agentix-Project/agentix-cookbook/tree/main/examples/eval-cc-swe">
Larger example: Claude Code on SWE-bench Verified.
</Card>
<Card title="Architecture" icon="sitemap" href="/reference/architecture">
Expand Down
2 changes: 1 addition & 1 deletion docs/run-rollouts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ agentix-run \

## Worked example

[`examples/run-swe-rollouts`](https://github.com/Agentiix/Agentix/tree/master/examples/run-swe-rollouts)
[`examples/run-swe-rollouts`](https://github.com/Agentix-Project/Agentix/tree/master/examples/run-swe-rollouts)
runs SWE-bench through the runner with a `SweDataset` + `ClaudeCodeAgent`
adapter; `--ground-truth` swaps in a gold-patch agent that reuses the same
scoring path.
4 changes: 2 additions & 2 deletions examples/eval-tui/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ description = "Live Textual dashboard for Agentix batch rollouts"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [{ name = "Agentiix" }]
urls = { Homepage = "https://github.com/Agentiix/Agentix" }
authors = [{ name = "Agentix maintainers" }]
urls = { Homepage = "https://github.com/Agentix-Project/Agentix" }
dependencies = [
"agentixx",
"agentix-runner>=0.1.0",
Expand Down
4 changes: 2 additions & 2 deletions examples/eval-web/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ description = "Live web dashboard for Agentix batch rollouts (FastAPI + WebSocke
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [{ name = "Agentiix" }]
urls = { Homepage = "https://github.com/Agentiix/Agentix" }
authors = [{ name = "Agentix maintainers" }]
urls = { Homepage = "https://github.com/Agentix-Project/Agentix" }
dependencies = [
"agentixx",
"agentix-runner>=0.1.0",
Expand Down
4 changes: 2 additions & 2 deletions examples/run-swe-rollouts/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ description = "Batch SWE-bench rollouts on Agentix via agentix.runner"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [{ name = "Agentiix" }]
urls = { Homepage = "https://github.com/Agentiix/Agentix" }
authors = [{ name = "Agentix maintainers" }]
urls = { Homepage = "https://github.com/Agentix-Project/Agentix" }
dependencies = [
"agentixx",
"agentix-runner>=0.1.0", # batch rollout orchestration
Expand Down
2 changes: 1 addition & 1 deletion plugins/abridge/LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2026 Agentiix
Copyright (c) 2026 Agentix

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion plugins/providers/daytona/LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2026 Agentiix
Copyright (c) 2026 Agentix

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion plugins/providers/daytona/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# agentix-provider-daytona

[Daytona](https://www.daytona.io/) provider backend for
[Agentix](https://github.com/Agentiix/Agentix).
[Agentix](https://github.com/Agentix-Project/Agentix).

> Status: CLI surface in place; the managed-sandbox integration is
> still a stub. Tracking parity with `DockerProvider` (live runtime
Expand Down
2 changes: 1 addition & 1 deletion plugins/providers/docker/LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2026 Agentiix
Copyright (c) 2026 Agentix

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion plugins/providers/docker/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# agentix-provider-docker

Docker provider backend for [Agentix](https://github.com/Agentiix/Agentix).
Docker provider backend for [Agentix](https://github.com/Agentix-Project/Agentix).

Provisions a sandbox by running a deployed Agentix bundle in a
Docker-compatible runtime, returns the runtime URL the orchestrator's
Expand Down
2 changes: 1 addition & 1 deletion plugins/providers/e2b/LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2026 Agentiix
Copyright (c) 2026 Agentix

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion plugins/providers/e2b/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# agentix-provider-e2b

[E2B](https://e2b.dev/) provider backend for
[Agentix](https://github.com/Agentiix/Agentix).
[Agentix](https://github.com/Agentix-Project/Agentix).

> Status: CLI surface in place; the managed-sandbox integration is
> still a stub. Tracking parity with `DockerProvider` (live runtime
Expand Down
2 changes: 1 addition & 1 deletion plugins/runtime-basic/LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2026 Agentiix
Copyright (c) 2026 Agentix

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion plugins/runtime-basic/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# agentix-runtime-basic

Shell + file I/O primitives for [Agentix](https://github.com/Agentiix/Agentix)
Shell + file I/O primitives for [Agentix](https://github.com/Agentix-Project/Agentix)
sandboxes. One wheel, two namespaces:

| Namespace | Purpose |
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ description = "The universal bridge between agents and environments (import as `
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [{ name = "Agentiix" }]
urls = { Homepage = "https://github.com/Agentiix/Agentix" }
authors = [{ name = "Agentix maintainers" }]
urls = { Homepage = "https://github.com/Agentix-Project/Agentix" }
dependencies = [
"fastapi>=0.115",
"uvicorn[standard]>=0.30",
Expand Down
Loading