Skip to content

Commit 30aa538

Browse files
committed
Update homepage
1 parent 3d77537 commit 30aa538

File tree

2 files changed

+21
-25
lines changed

2 files changed

+21
-25
lines changed

web/app/page.tsx

Lines changed: 19 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ export default function Home() {
2222
Development
2323
</h1>
2424
<p className="text-xl md:text-2xl text-gray-600 mb-8 max-w-3xl mx-auto">
25-
A CLI toolkit that brings structure to AI-assisted software development with phase templates,
25+
A CLI toolkit that brings structure to AI-assisted software development with phase templates,
2626
systematic planning, and comprehensive documentation workflows.
2727
</p>
2828
<div className="flex flex-col sm:flex-row gap-4 justify-center items-center">
29-
<Link
30-
href="/docs"
29+
<Link
30+
href="/docs"
3131
className="px-8 py-3 bg-black text-white rounded-lg font-medium hover:bg-gray-800 transition-colors no-underline"
3232
>
3333
Get Started
@@ -42,28 +42,35 @@ export default function Home() {
4242
<h2 className="text-3xl md:text-4xl font-bold text-center mb-12">
4343
Why AI DevKit?
4444
</h2>
45-
<div className="grid md:grid-cols-3 gap-8">
45+
<div className="grid md:grid-cols-2 gap-8">
4646
<div className="bg-white p-8 rounded-lg border border-gray-200">
4747
<h3 className="text-xl font-bold mb-3">Documentation-First</h3>
4848
<p className="text-gray-600 leading-relaxed">
49-
Start with clear requirements, design decisions, and implementation plans.
49+
Start with clear requirements, design decisions, and implementation plans.
5050
Keep your project knowledge organized and accessible.
5151
</p>
5252
</div>
5353
<div className="bg-white p-8 rounded-lg border border-gray-200">
5454
<h3 className="text-xl font-bold mb-3">Phase-Based Workflow</h3>
5555
<p className="text-gray-600 leading-relaxed">
56-
Move systematically through requirements, design, planning, implementation,
56+
Move systematically through requirements, design, planning, implementation,
5757
and testing. No step gets skipped.
5858
</p>
5959
</div>
6060
<div className="bg-white p-8 rounded-lg border border-gray-200">
6161
<h3 className="text-xl font-bold mb-3">AI-Friendly Context</h3>
6262
<p className="text-gray-600 leading-relaxed">
63-
Organize project knowledge so AI assistants provide better guidance.
63+
Organize project knowledge so AI assistants provide better guidance.
6464
Amplify human capabilities with structured context.
6565
</p>
6666
</div>
67+
<div className="bg-white p-8 rounded-lg border border-gray-200">
68+
<h3 className="text-xl font-bold mb-3">Memory</h3>
69+
<p className="text-gray-600 leading-relaxed">
70+
Store actionable insights, coding patterns, and project guidelines.
71+
Once stored, this knowledge is available to your AI agents (via MCP) and to you directly via the CLI, ensuring consistency across your development workflow.
72+
</p>
73+
</div>
6774
</div>
6875
</div>
6976
</section>
@@ -120,7 +127,7 @@ export default function Home() {
120127
<code>npx ai-devkit init</code>
121128
</pre>
122129
<p className="text-gray-600 mt-6">
123-
This creates a <code>docs/ai/</code> directory with phase templates for
130+
This creates a <code>docs/ai/</code> directory with phase templates for
124131
requirements, design, planning, implementation, testing, deployment, and monitoring.
125132
</p>
126133
<p className="text-gray-600 mt-6">
@@ -129,8 +136,8 @@ export default function Home() {
129136
<iframe src="https://www.youtube.com/embed/8cNFkHEVE3o?autoplay=1&mute=1&loop=1&controls=0" className="w-full h-[440px]" />
130137
</div>
131138
<div className="text-center mt-8">
132-
<Link
133-
href="/docs"
139+
<Link
140+
href="/docs"
134141
className="text-lg font-medium hover:opacity-70 transition-opacity"
135142
>
136143
Read the full documentation →
@@ -148,8 +155,8 @@ export default function Home() {
148155
<p className="text-xl text-gray-300 mb-8 max-w-2xl mx-auto">
149156
Join developers who are building better software with AI assistance and structured workflows.
150157
</p>
151-
<Link
152-
href="/docs"
158+
<Link
159+
href="/docs"
153160
className="inline-block px-8 py-3 bg-white text-black rounded-lg font-medium hover:bg-gray-100 transition-colors no-underline"
154161
>
155162
Get Started Now

web/content/docs/6-memory.md

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,7 @@ You can interact with Memory in two ways:
1616
1. **Through your AI Assistant (Recommended):** Connect via MCP so your AI can automatically search for relevant context and save new rules as you work. When you chat with your AI assistant, it will automatically fallback to the CLI to search for relevant context and save new rules if MCP is not available.
1717
2. **Through the CLI:** Manually store or retrieve knowledge directly from your terminal—perfect for quick lookups or scripting.
1818

19-
---
20-
21-
## 1. Using with AI Agents (MCP)
19+
## Using with AI Agents (MCP)
2220

2321
This is the most powerful way to use Memory. Your AI (Cursor, Claude, etc.) gains "tools" to save and retrieve information naturally.
2422

@@ -49,9 +47,7 @@ Once connected, you can talk to your AI naturally:
4947
5048
The AI will intelligently rank results based on your current task and available tags.
5149

52-
---
53-
54-
## 2. Using the CLI
50+
## Using the CLI
5551

5652
You don't need an AI agent to use Memory. The `ai-devkit` CLI has built-in commands to manage your knowledge base.
5753

@@ -85,13 +81,6 @@ ai-devkit memory search --query "docker m1"
8581
]
8682
```
8783

88-
### CLI Reference
89-
90-
| Command | Description | Key Flags |
91-
| :--- | :--- | :--- |
92-
| `memory store` | Save a new item | `--title`, `--content`, `--tags`, `--scope` |
93-
| `memory search` | Find items | `--query`, `--tags`, `--limit` |
94-
9584
## Organizing Your Knowledge
9685

9786
To keep your memory effective, use **Tags** and **Scopes**.

0 commit comments

Comments
 (0)