generated from nhcarrigan/template
798ec2faae
Refactored createIssue, createTask, and onboardMentee commands to extract helper functions, fix JSDoc descriptions, correct type handling, and satisfy all ESLint rules. Also fixed object-shorthand mixing in index.ts and the naming convention in anthropic.ts.
13 lines
331 B
TypeScript
13 lines
331 B
TypeScript
/**
|
|
* @copyright NHCarrigan
|
|
* @license Naomi's Public License
|
|
* @author Naomi Carrigan
|
|
*/
|
|
|
|
// eslint-disable-next-line @typescript-eslint/naming-convention -- SDK default export uses PascalCase.
|
|
import Anthropic from "@anthropic-ai/sdk";
|
|
|
|
export const anthropic = new Anthropic({
|
|
apiKey: process.env.ANTHROPIC_KEY ?? "",
|
|
});
|