tpmjs/apps/web
Ajax Davis 1118463e6b feat(skills): add RealSkills living endpoint for agent Q&A
Implements a skills endpoint that evolves through agent conversations:

- GET /:username/collections/:slug/skills - Returns markdown skill summary
- POST /:username/collections/:slug/skills - Ask questions, get RAG+LLM responses

Features:
- OpenAI text-embedding-3-large (3072 dims) for semantic similarity
- GPT-4.1-mini for response generation with RAG context
- Lazy seeding of synthetic questions on first access
- Cache hits for >95% similar questions
- Real-time skill graph updates (emergent skill taxonomy)
- Session support for multi-turn conversations
- Activity feed and stats APIs for UI

Database models: SkillQuestion, Skill, SkillSession, SkillQuestionSkill, SkillQuestionTool
2026-01-25 02:37:02 +10:00
..
public fix: move tools-export.json to public/ for Vercel compatibility 2026-01-01 17:46:36 +10:00
scripts docs: update all URL references to new username/slug format 2026-01-13 23:14:36 +10:00
src feat(skills): add RealSkills living endpoint for agent Q&A 2026-01-25 02:37:02 +10:00
.gitignore fix: add npmPublishedAt to API response and add null safety for dates 2025-12-16 12:49:53 +10:00
eslint.config.mjs fix(lint): configure Biome to properly ignore build directories 2025-11-26 22:49:45 +10:00
FEATURES.md feat(web): add interactive animated features section to homepage 2026-01-18 01:52:02 +10:00
next-env.d.ts fix: resolve build errors and clean up scenario page 2026-01-20 13:54:24 +10:00
next.config.ts fix(web): remove registry packages from transpilePackages to fix conflict 2026-01-23 18:19:05 +10:00
package.json fix(web): use npm versions for registry packages instead of workspace 2026-01-23 18:27:37 +10:00
postcss.config.js feat: add complete monorepo structure and all packages 2025-11-25 21:59:40 +10:00
RATE_LIMITING.md feat: add HN launch readiness features 2025-12-14 11:56:42 +10:00
RATE_LIMITING_SUMMARY.md feat: add HN launch readiness features 2025-12-14 11:56:42 +10:00
tailwind.config.ts fix: resolve tailwind config import issues 2026-01-20 12:12:16 +10:00
tsconfig.json feat(sync): implement Phase 3 Sync Workers with Vercel Cron integration 2025-11-28 02:57:54 +10:00
vercel.json fix: use pnpm -w flag for workspace root build command 2026-01-14 04:35:24 +10:00
vitest.config.mjs feat: add use cases marketing product with AI-generated content 2026-01-20 16:17:35 +10:00
vitest.integration.config.mjs feat: add use cases marketing product with AI-generated content 2026-01-20 16:17:35 +10:00