Skip to content

Commit 7401711

Browse files
committed
add publisher to .agents/constants.ts
1 parent a712991 commit 7401711

21 files changed

+41
-40
lines changed

.agents/ask.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import { version } from './version'
1+
import { publisher, version } from './constants'
22

33
import type { AgentConfig } from './types/agent-config'
44

55
const config: AgentConfig = {
66
id: 'ask',
77
version,
8-
publisher: 'codebuff',
8+
publisher,
99
model: 'gemini-2.5-pro-preview-06-05',
1010
displayName: 'Buffy the Enthusiastic Coding Assistant',
1111

.agents/base-experimental.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import { version } from './version'
1+
import { publisher, version } from './constants'
22

33
import type { AgentConfig } from './types/agent-config'
44

55
const config: AgentConfig = {
66
id: 'base-experimental',
77
version,
8-
publisher: 'codebuff',
8+
publisher,
99
model: 'gemini-2.5-pro-preview-06-05',
1010
displayName: 'Buffy the Enthusiastic Coding Assistant',
1111

.agents/base-lite.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import { version } from './version'
1+
import { publisher, version } from './constants'
22

33
import type { AgentConfig } from './types/agent-config'
44

55
const config: AgentConfig = {
66
id: 'base-lite',
77
version,
8-
publisher: 'codebuff',
8+
publisher,
99
model: 'gemini-2.5-flash-preview-05-20',
1010
displayName: 'Buffy the Enthusiastic Coding Assistant',
1111

.agents/base-max.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import { version } from './version'
1+
import { publisher, version } from './constants'
22

33
import type { AgentConfig } from './types/agent-config'
44

55
const config: AgentConfig = {
66
id: 'base-max',
77
version,
8-
publisher: 'codebuff',
8+
publisher,
99
model: 'anthropic/claude-4-opus-20250522',
1010
displayName: 'Buffy the Enthusiastic Coding Assistant',
1111

.agents/base.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import { version } from './version'
1+
import { publisher, version } from './constants'
22

33
import type { AgentConfig } from './types/agent-config'
44

55
const config: AgentConfig = {
66
id: 'base',
77
version,
8-
publisher: 'codebuff',
8+
publisher,
99
model: 'anthropic/claude-4-sonnet-20250522',
1010
displayName: 'Buffy the Enthusiastic Coding Assistant',
1111

.agents/brainstormer.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import { version } from './version'
1+
import { publisher, version } from './constants'
22

33
import type { AgentConfig } from './types/agent-config'
44

55
const config: AgentConfig = {
66
id: 'brainstormer',
77
version,
8-
publisher: 'codebuff',
8+
publisher,
99
displayName: 'Brian the Brainstormer',
1010
model: 'anthropic/claude-4-sonnet-20250522',
1111

.agents/changes-reviewer.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import { version } from './version'
1+
import { publisher, version } from './constants'
22

33
import type { AgentConfig, AgentStepContext } from './types/agent-config'
44

55
const config: AgentConfig = {
66
id: 'changes-reviewer',
77
version,
8-
publisher: 'codebuff',
8+
publisher,
99
displayName: 'Changes Reviewer',
1010
model: 'x-ai/grok-4',
1111

.agents/charles.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { version } from './version'
1+
import { publisher, version } from './constants'
22

33
import type { AgentConfig } from './types/agent-config'
44

@@ -12,7 +12,7 @@ import type { AgentConfig } from './types/agent-config'
1212
const config: AgentConfig = {
1313
id: 'charles',
1414
version,
15-
publisher: 'codebuff',
15+
publisher,
1616
displayName: 'Charles - Deep Sea Tuna Researcher',
1717
model: 'anthropic/claude-4-sonnet-20250522',
1818

.agents/claude4-gemini-thinking.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import { version } from './version'
1+
import { publisher, version } from './constants'
22

33
import type { AgentConfig } from './types/agent-config'
44

55
const config: AgentConfig = {
66
id: 'claude4-gemini-thinking',
77
version,
8-
publisher: 'codebuff',
8+
publisher,
99
model: 'anthropic/claude-4-sonnet-20250522',
1010
displayName: 'Buffy the Enthusiastic Coding Assistant',
1111

.agents/constants.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export const publisher = 'codebuff'
2+
export const version = '0.0.1'

0 commit comments

Comments
 (0)