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
6 changes: 3 additions & 3 deletions .github/workflows/agentblame.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"

- name: Install dependencies
run: bun install
- name: Install agentblame
run: npm install -g @mesadev/agentblame

- name: Fetch notes, tags, and PR head
run: |
Expand All @@ -39,7 +39,7 @@ jobs:
git fetch origin refs/pull/${{ github.event.pull_request.number }}/head:refs/pull/${{ github.event.pull_request.number }}/head 2>/dev/null || echo "Could not fetch PR head"

- name: Process merge (transfer notes + update analytics)
run: bun run packages/cli/src/post-merge.ts
run: bun $(npm root -g)/@mesadev/agentblame/dist/post-merge.js
env:
PR_NUMBER: ${{ github.event.pull_request.number }}
PR_TITLE: ${{ github.event.pull_request.title }}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "agentblame",
"displayName": "Agent Blame",
"description": "Track AI-generated vs human-written code. Provides git notes storage, CLI, and GitHub PR attribution.",
"version": "0.2.5",
"version": "0.2.6",
"private": true,
"license": "Apache-2.0",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/chrome/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@agentblame/chrome",
"version": "0.2.5",
"version": "0.2.6",
"description": "Agent Blame Chrome Extension - See AI attribution on GitHub PRs",
"private": true,
"scripts": {
Expand Down
14 changes: 7 additions & 7 deletions packages/chrome/src/content/analytics-overlay.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@ import {
const PAGE_CONTAINER_ID = "agentblame-page-container";
const ORIGINAL_CONTENT_ATTR = "data-agentblame-hidden";

// Tool color palette - GitHub Primer colors that work in light/dark themes
// Tool color palette - High contrast colors that work in light/dark themes
const TOOL_COLOR_PALETTE = [
"#0969da", // Blue
"#8250df", // Purple
"#bf3989", // Pink
"#0a3069", // Dark blue
"#1a7f37", // Green
"#9a6700", // Yellow/brown
"#cf222e", // Red
"#6e7781", // Gray
"#1a7f37", // Green
"#8250df", // Purple
"#bf8700", // Gold/Yellow
"#0550ae", // Dark Blue
"#bf3989", // Magenta
"#1b7c83", // Teal
];

/**
Expand Down
Binary file modified packages/chrome/src/icons/icon128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified packages/chrome/src/icons/icon16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified packages/chrome/src/icons/icon48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 12 additions & 8 deletions packages/chrome/src/icons/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion packages/chrome/src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 3,
"name": "Agent Blame",
"version": "0.2.5",
"version": "0.2.6",
"description": "See AI-generated vs human-written code on GitHub PRs",
"icons": {
"16": "icons/icon16.png",
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mesadev/agentblame",
"version": "0.2.5",
"version": "0.2.6",
"description": "CLI to track AI-generated vs human-written code",
"license": "Apache-2.0",
"repository": {
Expand Down
Loading