Complete rewrite of all 9 slides to create a coherent story for engineers: 1. Welcome - TPMJS: A Tool Registry for the AI SDK 2. Problem - AI SDK Tools Are Static (compiled in, bundle grows) 3. Solution - Two imports enable dynamic tools at runtime 4. HowItWorks - The two meta-tools (search + execute) 5. Discovery - searchTpmjsToolsTool schema and response 6. Integration - registryExecuteTool execution flow 7. Quality - What gets indexed (schemas, scores, health) 8. ToolDetail - Full agent conversation flow example 9. GetStarted - How to publish tools to the registry Also adds eslint.config.mjs to ignore .next build directory.
16 lines
281 B
JavaScript
16 lines
281 B
JavaScript
import reactConfig from '@tpmjs/eslint-config/react.js';
|
|
|
|
export default [
|
|
{
|
|
ignores: [
|
|
'.next/**',
|
|
'.turbo/**',
|
|
'node_modules/**',
|
|
'*.config.js',
|
|
'*.config.ts',
|
|
'next-env.d.ts',
|
|
'eslint.config.mjs',
|
|
],
|
|
},
|
|
...reactConfig,
|
|
];
|