diff --git a/website/app/docs/page.tsx b/website/app/docs/page.tsx index e105a2e7f..89dab5e09 100644 --- a/website/app/docs/page.tsx +++ b/website/app/docs/page.tsx @@ -40,7 +40,7 @@ const faqItems = [ { question: 'What Claude Code skills are included?', answer: - '14 auto-invoking skills: security audit, smart test, code review, deep review, doc generation, refactoring, bug prediction, release prep, planning, brainstorming, workflow orchestration, fix-test, spec-driven development, and the coach help system.', + '17 auto-invoking skills: security audit, smart test, code quality, bug prediction, doc generation, refactor planning, release prep, planning, spec-driven development, fix-test, workflow orchestration, RAG-grounded code generation, content verification, cross-session recall, memory and context, the coach help system, and the attune hub router.', }, { question: 'Where do I install attune-help and attune-author from?', @@ -61,11 +61,14 @@ const workflows = [ { name: 'Release Prep', description: 'Changelog, version bump, health checks' }, ]; +// The 17 plugin skills — keep in sync with plugin/skills/ +// (test_skill_count asserts the directory count). const skills = [ - '/security', '/smart-test', '/code-quality', '/deep-review', - '/doc-gen', '/refactor', '/release', '/plan', - '/brainstorm', '/spec', '/fix-test', '/bulk', - '/coach', '/attune', + 'security-audit', 'smart-test', 'code-quality', 'bug-predict', + 'doc-gen', 'refactor-plan', 'release-prep', 'planning', + 'spec', 'fix-test', 'workflow-orchestration', 'rag-code-gen', + 'verify', 'recall', 'memory-and-context', 'coach', + 'attune-hub', ]; export default function DocsPage() { @@ -165,7 +168,7 @@ export default function DocsPage() {
Generate, maintain, and serve help from your codebase. - 15 workflows, 14 skills, MCP server. + 17 workflows, 17 skills, MCP server.
- Generate 11 kinds of source-grounded templates with + Generate 15 kinds of source-grounded templates with per-type polish prompts. Pairs with attune-help.
Install from the marketplace. Progressive help, project - bootstrapping, and 14 skills right in your terminal. + bootstrapping, and 17 skills right in your terminal.
- attune-ai includes 15 multi-stage workflows, 14 + attune-ai includes 17 multi-stage workflows, 17 auto-invoking Claude Code skills, and an MCP server with 41 registered tools.
@@ -585,7 +588,7 @@ export default function DocsPage() {Skills auto-invoke from natural language. Type the topic diff --git a/website/app/page.tsx b/website/app/page.tsx index 759fd4710..cfa928ed6 100644 --- a/website/app/page.tsx +++ b/website/app/page.tsx @@ -47,7 +47,7 @@ export default function Home() {
- 15 workflows, 14 auto-triggering skills, MCP server with 41 tools. + 17 workflows, 17 auto-triggering skills, MCP server with 41 tools. Plus the documentation toolchain we built along the way — now four standalone packages.
@@ -148,6 +148,59 @@ export default function Home() { {/* Platform overview — one code sample, three packages */} + {/* OS layer: workflows + memory */} ++ What makes it an OS, not a toolbox: orchestrated workflows + on top, persistent memory underneath. Your AI collaborator + stops starting from zero. +
++ 17 multi-stage workflows — security audit, code review, + bug prediction, release prep — with cost-tiered model + routing and structured, readable reports. Works on a + Claude subscription or an API key. +
++ Findings from each session are stashed and recalled in + the next. A retrievable lessons corpus surfaces the + right engineering lesson at the moment a prompt needs + it — automatically, or on demand with /recall. +
+
+ Local-first by default; plug in Redis Agent Memory
+ Server for semantic search over your memory — local
+ Ollama embeddings, no cloud required. Enable it with{' '}
+ pip install 'attune-ai[redis]'{' '}
+ plus a local AMS service. Our int8 vector quantization
+ work is an open upstream PR to Redis.
+
- We built attune-ai to make our own docs better. The - doc toolchain split off as four standalone packages - — an end-to-end author → reader loop. Use + attune-ai began as a tool to help people work with + AI, then grew into an engineering toolkit focused on + Claude — and later Redis. The documentation + toolchain came after, built with the same development + discipline, and split off as four standalone packages + forming an end-to-end author → reader loop. Use the full stack, or drop in just the piece you need.
attune-author- Generates 11 kinds of source-grounded templates with + Generates 15 kinds of source-grounded templates with per-type LLM polish. Runs at dev time or in CI.
- Full framework. Workflows, staleness detection, MCP server, and 14 auto-triggering skills for Claude Code. + Full framework. Workflows, staleness detection, MCP server, and 17 auto-triggering skills for Claude Code.
- AI authoring companion. Generates 11 kinds of source-grounded templates with per-type polish prompts. + AI authoring companion. Generates 15 kinds of source-grounded templates with per-type polish prompts.