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
2 changes: 1 addition & 1 deletion packages/chrome/src/popup/popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ <h1>Agent Blame</h1>

<footer>
<a href="https://github.com/mesa-dot-dev/agentblame" target="_blank">Documentation</a>
<span class="version">v0.1.2</span>
<span class="version">v0.2.6</span>
</footer>
</div>

Expand Down
7 changes: 2 additions & 5 deletions packages/cli/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -357,14 +357,11 @@ async function runInit(initArgs: string[] = []): Promise<void> {

console.log("");
console.log(" \x1b[1mNext steps:\x1b[0m");
console.log(" \x1b[33m1.\x1b[0m Restart Cursor or Claude Code");
console.log(" \x1b[33m2.\x1b[0m Push the analytics tag: \x1b[36mgit push origin agentblame-analytics-anchor\x1b[0m");
console.log(" \x1b[33m1.\x1b[0m Commit \x1b[36m.github/workflows/agentblame.yml\x1b[0m to enable PR analytics");
console.log(" \x1b[33m2.\x1b[0m Restart Cursor or Claude Code to pick up hooks");
console.log(" \x1b[33m3.\x1b[0m Make AI edits and commit your changes");
console.log(" \x1b[33m4.\x1b[0m Run \x1b[36magentblame blame <file>\x1b[0m to see attribution");
console.log("");
console.log(" \x1b[2mWorkflow created at:\x1b[0m .github/workflows/agentblame.yml");
console.log(" \x1b[2mCommit this file to enable squash/rebase merge support and analytics.\x1b[0m");
console.log("");
}

async function runClean(uninstallArgs: string[] = []): Promise<void> {
Expand Down