Skip to content

Commit 4c272cf

Browse files
committed
Less 1 redesigned + fixed pre-commit
1 parent 0f13974 commit 4c272cf

File tree

7 files changed

+885
-1207
lines changed

7 files changed

+885
-1207
lines changed

website/.husky/pre-commit

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1 @@
1-
#!/bin/sh
2-
. "$(dirname "$0")/_/husky.sh"
3-
4-
npx lint-staged
1+
cd website && npx lint-staged

website/.lintstagedrc.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
module.exports = {
2-
'website/**/*.{ts,tsx}': ['eslint --fix', 'prettier --write'],
3-
'website/**/*.{js,jsx,json,css,md}': ['prettier --write'],
2+
'**/*.{ts,tsx}': ['eslint --fix', 'prettier --write'],
3+
'**/*.{js,jsx,json,css,md}': ['prettier --write'],
44
};

website/docs/fundamentals/index.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,13 @@ This module covers the essential concepts you need to understand before diving i
4242

4343
## Lessons in This Module
4444

45-
1. **Introduction to AI Coding Assistants** - Understanding what AI can and cannot do
46-
2. **How LLMs Generate Code** - Technical foundations you need to know
47-
3. **Mental Models for AI Collaboration** - Thinking effectively with AI
48-
4. **Setting Up Your Environment** - Tools and configuration
49-
5. **Your First AI-Assisted Project** - Hands-on practice
45+
1. **Introduction to AI Agent-Driven Development** - The paradigm shift and First Principles (what LLMs really are)
46+
2. **What Are AI Agents?** - Understanding agent architecture, execution workflows, and the engineer-operator role
47+
3. **The Four Operating Principles** - Fundamental constraints that govern successful agent operation
48+
4. **How LLMs Generate Code** - Technical foundations and behavioral patterns you need to know
49+
5. **Mental Models for AI Collaboration** - Thinking effectively with AI (coming soon)
50+
6. **Setting Up Your Environment** - Tools and configuration (coming soon)
51+
7. **Your First AI-Assisted Project** - Hands-on practice (coming soon)
5052

5153
## Prerequisites
5254

0 commit comments

Comments
 (0)