tycono 0.1.17 → 0.1.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tycono",
3
- "version": "0.1.17",
3
+ "version": "0.1.18",
4
4
  "description": "Build an AI company. Watch them work.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -28,6 +28,7 @@ import { speechRouter } from './routes/speech.js';
28
28
  import { costRouter } from './routes/cost.js';
29
29
  import { syncRouter } from './routes/sync.js';
30
30
  import { gitRouter } from './routes/git.js';
31
+ import { skillsRouter } from './routes/skills.js';
31
32
  import { importKnowledge } from './services/knowledge-importer.js';
32
33
  import { AnthropicProvider, type LLMProvider } from './engine/llm-adapter.js';
33
34
  import { readConfig } from './services/company-config.js';
@@ -186,6 +187,7 @@ export function createExpressApp(): express.Application {
186
187
  app.use('/api/cost', costRouter);
187
188
  app.use('/api/sync', syncRouter);
188
189
  app.use('/api/git', gitRouter);
190
+ app.use('/api/skills', skillsRouter);
189
191
 
190
192
  app.get('/api/health', (_req, res) => {
191
193
  res.json({ status: 'ok', companyRoot: COMPANY_ROOT });