b3e139548e
- Add plugin-identity.ts with 7 constants (PLUGIN_NAME, LEGACY_PLUGIN_NAME, etc.) - Add plugin-identity.test.ts with TDD tests - Update barrel export in index.ts - Add oh-my-openagent.schema.json for dual schema support - Update build-schema.ts to output both schemas Wave 1 of rename-openagent plan complete.
8 lines
352 B
TypeScript
8 lines
352 B
TypeScript
export const PLUGIN_NAME = "oh-my-openagent"
|
|
export const LEGACY_PLUGIN_NAME = "oh-my-opencode"
|
|
export const CONFIG_BASENAME = "oh-my-openagent"
|
|
export const LEGACY_CONFIG_BASENAME = "oh-my-opencode"
|
|
export const LOG_FILENAME = "oh-my-openagent.log"
|
|
export const CACHE_DIR_NAME = "oh-my-openagent"
|
|
export const LEGACY_CACHE_DIR_NAME = "oh-my-opencode"
|