Skip to content

Commit 4d70861

Browse files
committed
chore: update all references from foo-software to agentmeter org
Made-with: Cursor
1 parent 0aef4cb commit 4d70861

6 files changed

Lines changed: 17 additions & 17 deletions

File tree

.github/workflows/agent-review-codex.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383

8484
- name: Track with AgentMeter
8585
if: always()
86-
uses: foo-software/agentmeter-action@main
86+
uses: agentmeter/agentmeter-action@main
8787
with:
8888
api_key: ${{ secrets.AGENTMETER_API_KEY }}
8989
api_url: ${{ vars.AGENTMETER_API_URL || 'https://agentmeter.app' }}

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Visibility into what your AI agents actually cost. Works with **Claude Code**, **Codex**, and any agent that outputs token counts.
44

5-
[![CI](https://github.com/foo-software/agentmeter-action/actions/workflows/ci.yml/badge.svg)](https://github.com/foo-software/agentmeter-action/actions/workflows/ci.yml)
5+
[![CI](https://github.com/agentmeter/agentmeter-action/actions/workflows/ci.yml/badge.svg)](https://github.com/agentmeter/agentmeter-action/actions/workflows/ci.yml)
66

77
---
88

@@ -54,7 +54,7 @@ Value: your `am_sk_…` key
5454
### 4. Add the action to your workflow
5555

5656
```yaml
57-
- uses: foo-software/agentmeter-action@main
57+
- uses: agentmeter/agentmeter-action@main
5858
if: always()
5959
with:
6060
api_key: ${{ secrets.AGENTMETER_API_KEY }}
@@ -85,7 +85,7 @@ steps:
8585
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
8686
prompt: "Implement the feature described in this issue"
8787
88-
- uses: foo-software/agentmeter-action@main
88+
- uses: agentmeter/agentmeter-action@main
8989
if: always()
9090
with:
9191
api_key: ${{ secrets.AGENTMETER_API_KEY }}
@@ -109,7 +109,7 @@ steps:
109109
prompt: "Review this PR for correctness and style"
110110
model: gpt-5.4-mini
111111
112-
- uses: foo-software/agentmeter-action@main
112+
- uses: agentmeter/agentmeter-action@main
113113
if: always()
114114
with:
115115
api_key: ${{ secrets.AGENTMETER_API_KEY }}
@@ -141,7 +141,7 @@ This records the run with status and duration. Cost will show as `—` because `
141141
echo "output_tokens=$(echo "$token_line" | jq -r '.payload.info.total_token_usage.output_tokens // empty')" >> "$GITHUB_OUTPUT"
142142
echo "cache_read_tokens=$(echo "$token_line" | jq -r '.payload.info.total_token_usage.cached_input_tokens // empty')" >> "$GITHUB_OUTPUT"
143143
144-
- uses: foo-software/agentmeter-action@main
144+
- uses: agentmeter/agentmeter-action@main
145145
if: always()
146146
with:
147147
api_key: ${{ secrets.AGENTMETER_API_KEY }}
@@ -158,7 +158,7 @@ This records the run with status and duration. Cost will show as `—` because `
158158
### Status tracking only (no token counts)
159159

160160
```yaml
161-
- uses: foo-software/agentmeter-action@main
161+
- uses: agentmeter/agentmeter-action@main
162162
if: always()
163163
with:
164164
api_key: ${{ secrets.AGENTMETER_API_KEY }}
@@ -169,7 +169,7 @@ This records the run with status and duration. Cost will show as `—` because `
169169
### Disable comment posting
170170

171171
```yaml
172-
- uses: foo-software/agentmeter-action@main
172+
- uses: agentmeter/agentmeter-action@main
173173
if: always()
174174
with:
175175
api_key: ${{ secrets.AGENTMETER_API_KEY }}
@@ -214,7 +214,7 @@ jobs:
214214
issues: write # required — lets the action post cost comments
215215
pull-requests: write
216216
steps:
217-
- uses: foo-software/agentmeter-action@main
217+
- uses: agentmeter/agentmeter-action@main
218218
with:
219219
api_key: ${{ secrets.AGENTMETER_API_KEY }}
220220
engine: claude
@@ -356,7 +356,7 @@ If the action runs again on the same PR/issue, it updates the existing comment (
356356
Place `if: always()` on the AgentMeter step so it runs even when the agent step fails. This ensures failed runs are tracked too.
357357

358358
```yaml
359-
- uses: foo-software/agentmeter-action@main
359+
- uses: agentmeter/agentmeter-action@main
360360
if: always()
361361
with:
362362
api_key: ${{ secrets.AGENTMETER_API_KEY }}

docs/agentmeter-action-spec.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# AgentMeter Action — Architecture Reference
22

3-
> This document describes the current architecture and design decisions of the `foo-software/agentmeter-action` GitHub Action.
3+
> This document describes the current architecture and design decisions of the `agentmeter/agentmeter-action` GitHub Action.
44
55
---
66

docs/challenges.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The action runs as a step directly after the agent step. GitHub context is fully
1717
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
1818
prompt: "..."
1919

20-
- uses: foo-software/agentmeter-action@main
20+
- uses: agentmeter/agentmeter-action@main
2121
if: always()
2222
with:
2323
api_key: ${{ secrets.AGENTMETER_API_KEY }}

docs/status-values.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Documents how the `status` input works in the AgentMeter Action and what values
1111
When `workflow_run_id` is set, status is resolved **automatically** from the GitHub Actions conclusion of the triggering workflow. The user does not need to pass `status` — the action reads it from the `workflow_run` event payload and normalizes it internally via `normalizeConclusion()`.
1212

1313
```yaml
14-
- uses: foo-software/agentmeter-action@main
14+
- uses: agentmeter/agentmeter-action@main
1515
with:
1616
api_key: ${{ secrets.AGENTMETER_API_KEY }}
1717
workflow_run_id: ${{ github.event.workflow_run.id }}
@@ -23,7 +23,7 @@ When `workflow_run_id` is set, status is resolved **automatically** from the Git
2323
When running inline (no `workflow_run_id`), the user passes `status` explicitly. It defaults to `'success'` if omitted.
2424

2525
```yaml
26-
- uses: foo-software/agentmeter-action@main
26+
- uses: agentmeter/agentmeter-action@main
2727
if: always()
2828
with:
2929
api_key: ${{ secrets.AGENTMETER_API_KEY }}
@@ -65,7 +65,7 @@ The primary custom status. Use it when an agent run completes but requires human
6565
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
6666
prompt: "..."
6767
68-
- uses: foo-software/agentmeter-action@main
68+
- uses: agentmeter/agentmeter-action@main
6969
if: always()
7070
with:
7171
api_key: ${{ secrets.AGENTMETER_API_KEY }}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
"homepage": "https://agentmeter.app",
1212
"repository": {
1313
"type": "git",
14-
"url": "https://github.com/foo-software/agentmeter-action.git"
14+
"url": "https://github.com/agentmeter/agentmeter-action.git"
1515
},
1616
"bugs": {
17-
"url": "https://github.com/foo-software/agentmeter-action/issues"
17+
"url": "https://github.com/agentmeter/agentmeter-action/issues"
1818
},
1919
"keywords": [
2020
"github-actions",

0 commit comments

Comments
 (0)