Skip to content

Commit 8b978e5

Browse files
committed
cleanup
1 parent 6eebbe6 commit 8b978e5

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Extension source code for AgentOS — tools, channel adapters, integrations, and
1010

1111
[![CI Status](https://github.com/framerslab/agentos-extensions/workflows/CI/badge.svg)](https://github.com/framerslab/agentos-extensions/actions)
1212
[![License: Apache 2.0](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
13-
[![API Docs](https://img.shields.io/badge/docs-TypeDoc-blue)](https://framersai.github.io/agentos-extensions/)
13+
[![API Docs](https://img.shields.io/badge/docs-TypeDoc-blue)](https://framerslab.github.io/agentos-extensions/)
1414
[![npm: registry](https://img.shields.io/npm/v/@framers/agentos-extensions-registry?label=registry)](https://www.npmjs.com/package/@framers/agentos-extensions-registry)
1515
[![npm: catalog](https://img.shields.io/npm/v/@framers/agentos-extensions?label=catalog)](https://www.npmjs.com/package/@framers/agentos-extensions)
1616

@@ -430,7 +430,7 @@ All extensions get free CI/CD via GitHub Actions:
430430

431431
- **CI** (`ci.yml`): Lint, test, typecheck on every PR
432432
- **Release** (`release.yml`): Changesets auto-version PRs + npm publish on merge
433-
- **TypeDoc** (`pages-typedoc.yml`): API docs deployed to [framersai.github.io/agentos-extensions](https://framersai.github.io/agentos-extensions/)
433+
- **TypeDoc** (`pages-typedoc.yml`): API docs deployed to [framerslab.github.io/agentos-extensions](https://framerslab.github.io/agentos-extensions/)
434434
- **Extension validation** (`extension-validation.yml`): Manifest & structure checks
435435
- **Dependabot**: Automated dependency updates with auto-merge for patches
436436

@@ -452,7 +452,7 @@ All extensions get free CI/CD via GitHub Actions:
452452

453453
## Documentation
454454

455-
- [API Reference (TypeDoc)](https://framersai.github.io/agentos-extensions/)
455+
- [API Reference (TypeDoc)](https://framerslab.github.io/agentos-extensions/)
456456
- [How Extensions Work](./HOW_EXTENSIONS_WORK.md)
457457
- [Extension Architecture](./EXTENSION_ARCHITECTURE.md)
458458
- [Auto-Loading Extensions](./AUTO_LOADING_EXTENSIONS.md)
@@ -477,7 +477,7 @@ See [CONTRIBUTING.md](./CONTRIBUTING.md) for detailed guidelines.
477477
- **Extensions GitHub**: [github.com/framerslab/agentos-extensions](https://github.com/framerslab/agentos-extensions)
478478
- **Mars Genesis Demo**: [github.com/framerslab/mars-genesis-simulation](https://github.com/framerslab/mars-genesis-simulation)
479479
- **npm**: [@framers](https://www.npmjs.com/org/framers)
480-
- **API Docs**: [framersai.github.io/agentos-extensions](https://framersai.github.io/agentos-extensions/)
480+
- **API Docs**: [framerslab.github.io/agentos-extensions](https://framerslab.github.io/agentos-extensions/)
481481
- **Discord**: [wilds.ai/discord](https://wilds.ai/discord)
482482
- **Website**: [frame.dev](https://frame.dev)
483483
- **Contact**: [team@frame.dev](mailto:team@frame.dev)

RELEASING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ The `.changeset/config.json` controls behavior:
124124

125125
```json
126126
{
127-
"changelog": ["@changesets/changelog-github", { "repo": "framersai/agentos-extensions" }],
127+
"changelog": ["@changesets/changelog-github", { "repo": "framerslab/agentos-extensions" }],
128128
"access": "public",
129129
"baseBranch": "master"
130130
}

registry/curated/integrations/github/src/GitHubRepoIndexer.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ export interface IndexResult {
4545
* without arguments.
4646
*/
4747
export const ECOSYSTEM_REPOS: readonly { owner: string; repo: string }[] = [
48-
{ owner: 'framersai', repo: 'agentos' },
48+
{ owner: 'framerslab', repo: 'agentos' },
4949
{ owner: 'jddunn', repo: 'wunderland' },
50-
{ owner: 'framersai', repo: 'agentos-live-docs' },
50+
{ owner: 'framerslab', repo: 'agentos-live-docs' },
5151
{ owner: 'jddunn', repo: 'wunderland-live-docs' },
52-
{ owner: 'framersai', repo: 'agentos-skills-registry' },
53-
{ owner: 'framersai', repo: 'agentos-extensions' },
52+
{ owner: 'framerslab', repo: 'agentos-skills-registry' },
53+
{ owner: 'framerslab', repo: 'agentos-extensions' },
5454
] as const;
5555

5656
/**

scripts/update-registry.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ function scanExtensions() {
6666
version: packageJson.version,
6767
path: `templates/${template}`,
6868
description: packageJson.description,
69-
repository: `https://github.com/framersai/agentos-extensions/tree/master/templates/${template}`
69+
repository: `https://github.com/framerslab/agentos-extensions/tree/master/templates/${template}`
7070
});
7171
registry.stats.templateCount++;
7272
}
@@ -102,7 +102,7 @@ function scanExtensions() {
102102
tools: manifest.extensions?.map(e => e.id) || [],
103103
keywords: manifest.keywords || packageJson.keywords || [],
104104
npm: `https://www.npmjs.com/package/${packageJson.name}`,
105-
repository: `https://github.com/framersai/agentos-extensions/tree/master/registry/curated/${category}/${extension}`,
105+
repository: `https://github.com/framerslab/agentos-extensions/tree/master/registry/curated/${category}/${extension}`,
106106
verified: true,
107107
// Verified curated extensions should carry verification metadata
108108
// so clients can explain the "verified" designation.
@@ -144,7 +144,7 @@ function scanExtensions() {
144144
author: manifest.author || packageJson.author,
145145
keywords: manifest.keywords || packageJson.keywords || [],
146146
npm: `https://www.npmjs.com/package/${packageJson.name}`,
147-
repository: `https://github.com/framersai/agentos-extensions/tree/master/registry/community/${category}/${extension}`,
147+
repository: `https://github.com/framerslab/agentos-extensions/tree/master/registry/community/${category}/${extension}`,
148148
downloads: 0
149149
});
150150
registry.stats.communityCount++;

0 commit comments

Comments
 (0)