Skip to content
Open
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
24 changes: 24 additions & 0 deletions .codex-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"name": "bb-browser",
"version": "0.1.0",
"description": "Control Chrome with login state from Codex via MCP",
"author": {
"name": "epiral",
"url": "https://github.com/epiral/bb-browser"
},
"homepage": "https://github.com/epiral/bb-browser",
"repository": "https://github.com/epiral/bb-browser",
"keywords": [
"mcp",
"codex"
],
"mcpServers": "./.mcp.json",
"interface": {
"displayName": "BB Browser",
"shortDescription": "Control Chrome with login state from Codex via MCP",
"longDescription": "Your browser is the API. CLI + MCP server for AI agents to control Chrome with your login state.",
"category": "Productivity",
"websiteURL": "https://github.com/epiral/bb-browser"
},
"skills": "./skills/"
}
20 changes: 20 additions & 0 deletions .github/workflows/plugin-quality-gate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Plugin Quality Gate

on:
pull_request:
paths:
- ".codex-plugin/**"
- "skills/**"
- ".mcp.json"

jobs:
scan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Codex plugin quality gate
uses: hashgraph-online/hol-codex-plugin-scanner-action@v1
with:
plugin_dir: "."
min_score: 80
fail_on_severity: high
10 changes: 10 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,16 @@ jobs:
- name: Build
run: pnpm build

- name: Package extension
run: |
cd extension
zip -r "../bb-browser-extension-${{ inputs.tag_name }}.zip" .

- name: Upload extension asset
run: gh release upload "${{ inputs.tag_name }}" "bb-browser-extension-${{ inputs.tag_name }}.zip" --clobber
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Publish to npm
run: pnpm publish --no-git-checks
env:
Expand Down
11 changes: 11 additions & 0 deletions .mcp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"mcpServers": {
"bb-browser": {
"command": "npx",
"args": [
"-y",
"bb-browser"
]
}
}
}
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.11.2"
".": "0.11.0"
}
131 changes: 0 additions & 131 deletions CHANGELOG.md

Large diffs are not rendered by default.

Loading