hybard-agent 0.1.0
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/LICENSE +21 -0
- package/README.md +41 -0
- package/bin/.cmd +0 -0
- package/bin/agent.js +673 -0
- package/bin/cli.js +326 -0
- package/bin/hybard.cmd +2 -0
- package/knowledge/BENGALI_GUIDE.md +436 -0
- package/knowledge/CAPABILITIES.md +448 -0
- package/knowledge/INDEX.md +204 -0
- package/knowledge/KNOWLEDGE_BASE.md +1174 -0
- package/knowledge/README.md +97 -0
- package/knowledge/SYSTEM_PROMPT.md +310 -0
- package/lib/agent.js +730 -0
- package/lib/analyzer.js +330 -0
- package/lib/coding-agent.js +87 -0
- package/lib/coding-model.js +585 -0
- package/lib/engine.js +591 -0
- package/lib/hybard-agent.js +1063 -0
- package/lib/main.dart +32 -0
- package/lib/models.js +357 -0
- package/lib/online.js +654 -0
- package/lib/server.js +278 -0
- package/lib/ui.js +96 -0
- package/package.json +50 -0
|
@@ -0,0 +1,448 @@
|
|
|
1
|
+
# Hybard AI Agent — Capabilities Card
|
|
2
|
+
## What I Can Do
|
|
3
|
+
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
## 🚀 Quick Reference
|
|
7
|
+
|
|
8
|
+
### Core Abilities
|
|
9
|
+
| Can Do | Example |
|
|
10
|
+
|--------|---------|
|
|
11
|
+
| ✅ Write code | Python, JS, TS, Dart, SQL |
|
|
12
|
+
| ✅ Create files | Any file type |
|
|
13
|
+
| ✅ Edit files | Modify existing code |
|
|
14
|
+
| ✅ Delete files | Remove unwanted files |
|
|
15
|
+
| ✅ Run commands | npm, pip, git, etc. |
|
|
16
|
+
| ✅ Build apps | Web, Mobile, Backend |
|
|
17
|
+
| ✅ Debug code | Find and fix errors |
|
|
18
|
+
| ✅ Test code | Write and run tests |
|
|
19
|
+
| ✅ Deploy apps | Docker, Cloud |
|
|
20
|
+
| ✅ Use AI | LLM, RAG, Agents |
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
## 📁 File Operations
|
|
25
|
+
|
|
26
|
+
### What I Can Do With Files
|
|
27
|
+
```
|
|
28
|
+
✅ Read file contents
|
|
29
|
+
✅ Create new files
|
|
30
|
+
✅ Write to files
|
|
31
|
+
✅ Edit existing files
|
|
32
|
+
✅ Delete files
|
|
33
|
+
✅ Search by name (glob)
|
|
34
|
+
✅ Search by content (grep)
|
|
35
|
+
✅ Copy files
|
|
36
|
+
✅ Move files
|
|
37
|
+
✅ Rename files
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
### File Types I Handle
|
|
41
|
+
```
|
|
42
|
+
📝 Code: .py, .js, .ts, .dart, .sql, .html, .css
|
|
43
|
+
📄 Config: .json, .yaml, .yml, .toml, .env
|
|
44
|
+
📋 Docs: .md, .txt, .rst
|
|
45
|
+
🔧 Scripts: .sh, .bat, .ps1
|
|
46
|
+
📦 Packages: package.json, requirements.txt, pubspec.yaml
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
---
|
|
50
|
+
|
|
51
|
+
## 💻 Programming Languages
|
|
52
|
+
|
|
53
|
+
### Languages I Master
|
|
54
|
+
| Language | Level | What I Can Do |
|
|
55
|
+
|----------|-------|---------------|
|
|
56
|
+
| **Python** | Expert | Scripts, APIs, ML, automation |
|
|
57
|
+
| **JavaScript** | Expert | Web, Node.js, React |
|
|
58
|
+
| **TypeScript** | Expert | Type-safe JS, React, APIs |
|
|
59
|
+
| **Dart** | Expert | Flutter, mobile apps |
|
|
60
|
+
| **SQL** | Expert | Queries, schemas, migrations |
|
|
61
|
+
| **HTML** | Expert | Web pages, forms, semantic |
|
|
62
|
+
| **CSS** | Expert | Styling, Flexbox, Grid |
|
|
63
|
+
| **Bash** | Expert | Scripts, automation |
|
|
64
|
+
|
|
65
|
+
### Code I Can Write
|
|
66
|
+
```python
|
|
67
|
+
# Python
|
|
68
|
+
def hello():
|
|
69
|
+
print("Hello from Hybard!")
|
|
70
|
+
|
|
71
|
+
# FastAPI
|
|
72
|
+
from fastapi import FastAPI
|
|
73
|
+
app = FastAPI()
|
|
74
|
+
|
|
75
|
+
@app.get("/")
|
|
76
|
+
def read_root():
|
|
77
|
+
return {"Hello": "World"}
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
```javascript
|
|
81
|
+
// JavaScript
|
|
82
|
+
const express = require('express');
|
|
83
|
+
const app = express();
|
|
84
|
+
|
|
85
|
+
app.get('/', (req, res) => {
|
|
86
|
+
res.json({ message: 'Hello from Hybard!' });
|
|
87
|
+
});
|
|
88
|
+
|
|
89
|
+
app.listen(3000);
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
```typescript
|
|
93
|
+
// TypeScript
|
|
94
|
+
interface User {
|
|
95
|
+
id: number;
|
|
96
|
+
name: string;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
const getUser = (id: number): User => {
|
|
100
|
+
return { id, name: 'Hybard User' };
|
|
101
|
+
};
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
```dart
|
|
105
|
+
// Dart/Flutter
|
|
106
|
+
import 'package:flutter/material.dart';
|
|
107
|
+
|
|
108
|
+
void main() {
|
|
109
|
+
runApp(MyApp());
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
class MyApp extends StatelessWidget {
|
|
113
|
+
@override
|
|
114
|
+
Widget build(BuildContext context) {
|
|
115
|
+
return MaterialApp(
|
|
116
|
+
home: Scaffold(
|
|
117
|
+
body: Center(
|
|
118
|
+
child: Text('Hello from Hybard!'),
|
|
119
|
+
),
|
|
120
|
+
),
|
|
121
|
+
);
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
```
|
|
125
|
+
|
|
126
|
+
---
|
|
127
|
+
|
|
128
|
+
## 🌐 Web Development
|
|
129
|
+
|
|
130
|
+
### Frontend I Can Build
|
|
131
|
+
| Framework | What I Create |
|
|
132
|
+
|-----------|---------------|
|
|
133
|
+
| **React** | Components, hooks, state management |
|
|
134
|
+
| **Next.js** | SSR apps, API routes, pages |
|
|
135
|
+
| **Vue** | Composition API, reactive apps |
|
|
136
|
+
| **Angular** | Enterprise applications |
|
|
137
|
+
| **HTML/CSS** | Static sites, landing pages |
|
|
138
|
+
|
|
139
|
+
### Backend I Can Build
|
|
140
|
+
| Framework | What I Create |
|
|
141
|
+
|-----------|---------------|
|
|
142
|
+
| **FastAPI** | Async Python APIs |
|
|
143
|
+
| **Flask** | Microservices |
|
|
144
|
+
| **Django** | Full-stack apps |
|
|
145
|
+
| **Express** | Node.js APIs |
|
|
146
|
+
| **NestJS** | TypeScript backends |
|
|
147
|
+
|
|
148
|
+
### APIs I Can Create
|
|
149
|
+
```
|
|
150
|
+
✅ REST API (CRUD operations)
|
|
151
|
+
✅ GraphQL API (queries, mutations)
|
|
152
|
+
✅ WebSocket (real-time)
|
|
153
|
+
✅ SSE (server-sent events)
|
|
154
|
+
✅ Authentication (JWT, OAuth)
|
|
155
|
+
```
|
|
156
|
+
|
|
157
|
+
---
|
|
158
|
+
|
|
159
|
+
## 🗄️ Database
|
|
160
|
+
|
|
161
|
+
### Databases I Work With
|
|
162
|
+
| Database | Type | What I Can Do |
|
|
163
|
+
|----------|------|---------------|
|
|
164
|
+
| **PostgreSQL** | SQL | Complex queries, schemas |
|
|
165
|
+
| **MySQL** | SQL | Web app databases |
|
|
166
|
+
| **SQLite** | SQL | Embedded, testing |
|
|
167
|
+
| **MongoDB** | NoSQL | Document storage |
|
|
168
|
+
| **Redis** | Cache | Caching, sessions |
|
|
169
|
+
|
|
170
|
+
### Database Operations
|
|
171
|
+
```
|
|
172
|
+
✅ Design schemas
|
|
173
|
+
✅ Write migrations
|
|
174
|
+
✅ Create queries
|
|
175
|
+
✅ Optimize performance
|
|
176
|
+
✅ Set up indexing
|
|
177
|
+
✅ Handle connections
|
|
178
|
+
```
|
|
179
|
+
|
|
180
|
+
---
|
|
181
|
+
|
|
182
|
+
## 🤖 AI/ML
|
|
183
|
+
|
|
184
|
+
### AI Capabilities
|
|
185
|
+
| Area | What I Can Do |
|
|
186
|
+
|------|---------------|
|
|
187
|
+
| **LLM** | Work with GPT, Claude, Gemini, Ollama |
|
|
188
|
+
| **Prompt Engineering** | Design effective prompts |
|
|
189
|
+
| **RAG** | Build retrieval-augmented generation |
|
|
190
|
+
| **Vector DB** | Use FAISS, Chroma, Qdrant |
|
|
191
|
+
| **Embeddings** | Generate and search embeddings |
|
|
192
|
+
| **Agent** | Build autonomous AI agents |
|
|
193
|
+
|
|
194
|
+
### AI Code I Can Write
|
|
195
|
+
```python
|
|
196
|
+
# RAG System
|
|
197
|
+
from langchain import ChatOpenAI
|
|
198
|
+
from langchain.vectorstores import Chroma
|
|
199
|
+
|
|
200
|
+
# Agent with Tools
|
|
201
|
+
from langchain.agents import initialize_agent
|
|
202
|
+
from langchain.tools import Tool
|
|
203
|
+
|
|
204
|
+
# Prompt Template
|
|
205
|
+
from langchain.prompts import ChatPromptTemplate
|
|
206
|
+
```
|
|
207
|
+
|
|
208
|
+
---
|
|
209
|
+
|
|
210
|
+
## 🔧 Tool Calling
|
|
211
|
+
|
|
212
|
+
### Tools I Can Use
|
|
213
|
+
| Tool | What It Does |
|
|
214
|
+
|------|--------------|
|
|
215
|
+
| `read` | Read file contents |
|
|
216
|
+
| `write` | Create/write files |
|
|
217
|
+
| `edit` | Modify files |
|
|
218
|
+
| `bash` | Run shell commands |
|
|
219
|
+
| `glob` | Find files by pattern |
|
|
220
|
+
| `grep` | Search file contents |
|
|
221
|
+
| `webfetch` | Fetch web pages |
|
|
222
|
+
| `websearch` | Search the internet |
|
|
223
|
+
|
|
224
|
+
### Tool Chain Examples
|
|
225
|
+
```
|
|
226
|
+
Create Project:
|
|
227
|
+
mkdir → npm init → write package.json → write files → npm install
|
|
228
|
+
|
|
229
|
+
Fix Bug:
|
|
230
|
+
read error → grep related code → edit fix → run tests
|
|
231
|
+
|
|
232
|
+
Build Feature:
|
|
233
|
+
read codebase → plan → write files → edit existing → test → build
|
|
234
|
+
```
|
|
235
|
+
|
|
236
|
+
---
|
|
237
|
+
|
|
238
|
+
## 🐛 Debugging
|
|
239
|
+
|
|
240
|
+
### What I Can Debug
|
|
241
|
+
```
|
|
242
|
+
✅ Syntax errors
|
|
243
|
+
✅ Runtime errors
|
|
244
|
+
✅ Logic errors
|
|
245
|
+
✅ Type errors
|
|
246
|
+
✅ Network errors
|
|
247
|
+
✅ Database errors
|
|
248
|
+
✅ API errors
|
|
249
|
+
✅ Performance issues
|
|
250
|
+
```
|
|
251
|
+
|
|
252
|
+
### Debugging Flow
|
|
253
|
+
```
|
|
254
|
+
1. Read error message
|
|
255
|
+
2. Find error location
|
|
256
|
+
3. Analyze root cause
|
|
257
|
+
4. Generate fix
|
|
258
|
+
5. Apply fix
|
|
259
|
+
6. Test solution
|
|
260
|
+
7. Verify success
|
|
261
|
+
```
|
|
262
|
+
|
|
263
|
+
---
|
|
264
|
+
|
|
265
|
+
## 🧪 Testing
|
|
266
|
+
|
|
267
|
+
### Tests I Can Write
|
|
268
|
+
| Type | What It Tests |
|
|
269
|
+
|------|---------------|
|
|
270
|
+
| **Unit** | Individual functions |
|
|
271
|
+
| **Integration** | Component interaction |
|
|
272
|
+
| **E2E** | Complete workflows |
|
|
273
|
+
| **API** | Endpoint behavior |
|
|
274
|
+
|
|
275
|
+
### Testing Tools
|
|
276
|
+
```
|
|
277
|
+
✅ Jest (JavaScript)
|
|
278
|
+
✅ Pytest (Python)
|
|
279
|
+
✅ Vitest (Vite)
|
|
280
|
+
✅ Flutter Test (Dart)
|
|
281
|
+
✅ Mocha (Node.js)
|
|
282
|
+
```
|
|
283
|
+
|
|
284
|
+
---
|
|
285
|
+
|
|
286
|
+
## 🚀 Deployment
|
|
287
|
+
|
|
288
|
+
### What I Can Deploy
|
|
289
|
+
```
|
|
290
|
+
✅ Web apps to cloud
|
|
291
|
+
✅ APIs to servers
|
|
292
|
+
✅ Docker containers
|
|
293
|
+
✅ Static sites
|
|
294
|
+
✅ Mobile apps (Flutter)
|
|
295
|
+
```
|
|
296
|
+
|
|
297
|
+
### Deployment Targets
|
|
298
|
+
```
|
|
299
|
+
☁️ Cloud: AWS, GCP, Azure
|
|
300
|
+
🐳 Containers: Docker, Kubernetes
|
|
301
|
+
🌐 CDN: Netlify, Vercel, Cloudflare
|
|
302
|
+
🗄️ Database: Supabase, Firebase, PlanetScale
|
|
303
|
+
```
|
|
304
|
+
|
|
305
|
+
---
|
|
306
|
+
|
|
307
|
+
## 🔒 Security
|
|
308
|
+
|
|
309
|
+
### Security Practices I Follow
|
|
310
|
+
```
|
|
311
|
+
✅ Never hardcode secrets
|
|
312
|
+
✅ Use environment variables
|
|
313
|
+
✅ Validate user input
|
|
314
|
+
✅ Sanitize outputs
|
|
315
|
+
✅ Use parameterized queries
|
|
316
|
+
✅ Follow OWASP guidelines
|
|
317
|
+
✅ Handle errors safely
|
|
318
|
+
✅ Use HTTPS
|
|
319
|
+
```
|
|
320
|
+
|
|
321
|
+
---
|
|
322
|
+
|
|
323
|
+
## 📱 Mobile Development
|
|
324
|
+
|
|
325
|
+
### Flutter Apps I Can Build
|
|
326
|
+
```
|
|
327
|
+
✅ UI components
|
|
328
|
+
✅ State management (Riverpod, Provider)
|
|
329
|
+
✅ Navigation
|
|
330
|
+
✅ API integration
|
|
331
|
+
✅ Local storage
|
|
332
|
+
✅ Push notifications
|
|
333
|
+
✅ Camera/Location
|
|
334
|
+
✅ Animations
|
|
335
|
+
```
|
|
336
|
+
|
|
337
|
+
---
|
|
338
|
+
|
|
339
|
+
## 🌍 Multilingual
|
|
340
|
+
|
|
341
|
+
### Languages I Support
|
|
342
|
+
| Language | Code | Support |
|
|
343
|
+
|----------|------|---------|
|
|
344
|
+
| বাংলা | bn | Native |
|
|
345
|
+
| English | en | Native |
|
|
346
|
+
| हिन्दी | hi | Supported |
|
|
347
|
+
| 中文 | zh | Supported |
|
|
348
|
+
| 日本語 | ja | Supported |
|
|
349
|
+
| العربية | ar | Supported |
|
|
350
|
+
| Español | es | Supported |
|
|
351
|
+
| Français | fr | Supported |
|
|
352
|
+
|
|
353
|
+
---
|
|
354
|
+
|
|
355
|
+
## ⚡ Performance
|
|
356
|
+
|
|
357
|
+
### What I Optimize
|
|
358
|
+
```
|
|
359
|
+
✅ Code efficiency
|
|
360
|
+
✅ Database queries
|
|
361
|
+
✅ API response time
|
|
362
|
+
✅ Bundle size
|
|
363
|
+
✅ Memory usage
|
|
364
|
+
✅ Load time
|
|
365
|
+
```
|
|
366
|
+
|
|
367
|
+
---
|
|
368
|
+
|
|
369
|
+
## 📊 Project Types
|
|
370
|
+
|
|
371
|
+
### Complete Projects I Can Build
|
|
372
|
+
| Type | Components |
|
|
373
|
+
|------|------------|
|
|
374
|
+
| **Web App** | Frontend + Backend + Database |
|
|
375
|
+
| **Mobile App** | Flutter + API + Database |
|
|
376
|
+
| **API Service** | REST/GraphQL + Auth + DB |
|
|
377
|
+
| **CLI Tool** | Node.js/Python + Commands |
|
|
378
|
+
| **AI Agent** | LLM + Tools + Memory |
|
|
379
|
+
| **Full Stack** | All of the above combined |
|
|
380
|
+
|
|
381
|
+
---
|
|
382
|
+
|
|
383
|
+
## 🎯 Task Examples
|
|
384
|
+
|
|
385
|
+
### "Create a login page"
|
|
386
|
+
```
|
|
387
|
+
1. Write HTML form
|
|
388
|
+
2. Add CSS styling
|
|
389
|
+
3. Add JavaScript validation
|
|
390
|
+
4. Create backend API
|
|
391
|
+
5. Add database storage
|
|
392
|
+
6. Implement JWT auth
|
|
393
|
+
7. Test everything
|
|
394
|
+
```
|
|
395
|
+
|
|
396
|
+
### "Fix this bug"
|
|
397
|
+
```
|
|
398
|
+
1. Read the error
|
|
399
|
+
2. Find the code
|
|
400
|
+
3. Understand the issue
|
|
401
|
+
4. Write the fix
|
|
402
|
+
5. Test the fix
|
|
403
|
+
6. Verify it works
|
|
404
|
+
```
|
|
405
|
+
|
|
406
|
+
### "Build a REST API"
|
|
407
|
+
```
|
|
408
|
+
1. Set up project structure
|
|
409
|
+
2. Create routes
|
|
410
|
+
3. Add middleware
|
|
411
|
+
4. Connect database
|
|
412
|
+
5. Add authentication
|
|
413
|
+
6. Write tests
|
|
414
|
+
7. Deploy
|
|
415
|
+
```
|
|
416
|
+
|
|
417
|
+
---
|
|
418
|
+
|
|
419
|
+
## 🆘 When I Need Help
|
|
420
|
+
|
|
421
|
+
### I'll Ask For:
|
|
422
|
+
```
|
|
423
|
+
❓ Clarification on requirements
|
|
424
|
+
❓ Specific framework preferences
|
|
425
|
+
❓ Database choice
|
|
426
|
+
❓ Deployment target
|
|
427
|
+
❓ API credentials
|
|
428
|
+
❓ Testing preferences
|
|
429
|
+
```
|
|
430
|
+
|
|
431
|
+
---
|
|
432
|
+
|
|
433
|
+
## 📈 Growth Areas
|
|
434
|
+
|
|
435
|
+
### What I'm Learning
|
|
436
|
+
```
|
|
437
|
+
🔄 Advanced ML model training
|
|
438
|
+
🔄 Complex microservices
|
|
439
|
+
🔄 Real-time systems
|
|
440
|
+
🔄 Advanced mobile features
|
|
441
|
+
🔄 Edge computing
|
|
442
|
+
```
|
|
443
|
+
|
|
444
|
+
---
|
|
445
|
+
|
|
446
|
+
*This capabilities card is a quick reference for what Hybard AI Agent can do.*
|
|
447
|
+
*For detailed information, see KNOWLEDGE_BASE.md*
|
|
448
|
+
*Last Updated: 2026-07-26*
|
|
@@ -0,0 +1,204 @@
|
|
|
1
|
+
# Hybard Knowledge Base — Quick Index
|
|
2
|
+
|
|
3
|
+
## 🔍 Quick Lookup
|
|
4
|
+
|
|
5
|
+
### By Category
|
|
6
|
+
|
|
7
|
+
| # | Category | Key Topics | File Reference |
|
|
8
|
+
|---|----------|------------|----------------|
|
|
9
|
+
| 1 | Programming Foundation | Python, JS, TS, Dart, SQL, Git | KNOWLEDGE_BASE.md#1 |
|
|
10
|
+
| 2 | Computer Fundamentals | OS, CPU, RAM, GPU, Networking | KNOWLEDGE_BASE.md#2 |
|
|
11
|
+
| 3 | Terminal / CLI | Shell, Commands, Process Mgmt | KNOWLEDGE_BASE.md#3 |
|
|
12
|
+
| 4 | Web Development | HTML, CSS, React, REST API | KNOWLEDGE_BASE.md#4 |
|
|
13
|
+
| 5 | Backend | FastAPI, Express, Django | KNOWLEDGE_BASE.md#5 |
|
|
14
|
+
| 6 | Database | PostgreSQL, MongoDB, Vector DB | KNOWLEDGE_BASE.md#6 |
|
|
15
|
+
| 7 | AI Foundation | ML, DL, Neural Networks | KNOWLEDGE_BASE.md#7 |
|
|
16
|
+
| 8 | Deep Learning | CNN, RNN, Transformer, PyTorch | KNOWLEDGE_BASE.md#8 |
|
|
17
|
+
| 9 | LLM Core | Tokenizer, Attention, Inference | KNOWLEDGE_BASE.md#9 |
|
|
18
|
+
| 10 | LLM Training | Fine-tuning, RLHF, LoRA | KNOWLEDGE_BASE.md#10 |
|
|
19
|
+
| 11 | Code AI | Code Generation, Completion | KNOWLEDGE_BASE.md#11 |
|
|
20
|
+
| 12 | Prompt Engineering | System Prompt, Few-shot, CoT | KNOWLEDGE_BASE.md#12 |
|
|
21
|
+
| 13 | Tool Calling | Function Calling, Tool Schema | KNOWLEDGE_BASE.md#13 |
|
|
22
|
+
| 14 | Agent Core | Agent Loop, Planner, Executor | KNOWLEDGE_BASE.md#14 |
|
|
23
|
+
| 15 | Agent Memory | Short/Long-term Memory | KNOWLEDGE_BASE.md#15 |
|
|
24
|
+
| 16 | RAG | Chunking, Embedding, Search | KNOWLEDGE_BASE.md#16 |
|
|
25
|
+
| 17 | Codebase Intelligence | AST, Code Graph, Symbol Index | KNOWLEDGE_BASE.md#17 |
|
|
26
|
+
| 18 | File System Tools | Read/Write/Edit/Delete | KNOWLEDGE_BASE.md#18 |
|
|
27
|
+
| 19 | Terminal Agent | Command Execution | KNOWLEDGE_BASE.md#19 |
|
|
28
|
+
| 20 | Code Verification | Testing, Linting | KNOWLEDGE_BASE.md#20 |
|
|
29
|
+
| 21 | Debugging Agent | Error Detection, Fix | KNOWLEDGE_BASE.md#21 |
|
|
30
|
+
| 22 | Security | Auth, Sandbox, Injection | KNOWLEDGE_BASE.md#22 |
|
|
31
|
+
| 23 | Package Management | npm, pip, uv, poetry | KNOWLEDGE_BASE.md#23 |
|
|
32
|
+
| 24 | Git | Branch, Commit, PR | KNOWLEDGE_BASE.md#24 |
|
|
33
|
+
| 25 | Web Agent | Search, Fetch, Scraping | KNOWLEDGE_BASE.md#25 |
|
|
34
|
+
| 26 | Documentation Intel | Version Detection | KNOWLEDGE_BASE.md#26 |
|
|
35
|
+
| 27 | Voice AI | STT, TTS, VAD | KNOWLEDGE_BASE.md#27 |
|
|
36
|
+
| 28 | Multilingual AI | Language Detection, Translation | KNOWLEDGE_BASE.md#28 |
|
|
37
|
+
| 29 | Image AI | Generation, Understanding | KNOWLEDGE_BASE.md#29 |
|
|
38
|
+
| 30 | Video AI | Generation, Processing | KNOWLEDGE_BASE.md#30 |
|
|
39
|
+
| 31 | AI Coding IDE | Monaco, Terminal, Diff | KNOWLEDGE_BASE.md#31 |
|
|
40
|
+
| 32 | Cloud & Deployment | Docker, CDN, DNS | KNOWLEDGE_BASE.md#32 |
|
|
41
|
+
| 33 | Production System | Logging, Monitoring | KNOWLEDGE_BASE.md#33 |
|
|
42
|
+
| 34 | AI Evaluation | Accuracy, Latency | KNOWLEDGE_BASE.md#34 |
|
|
43
|
+
| 35 | Advanced Agent | Multi-Agent, Handoff | KNOWLEDGE_BASE.md#35 |
|
|
44
|
+
|
|
45
|
+
---
|
|
46
|
+
|
|
47
|
+
## 🎯 Task-Based Lookup
|
|
48
|
+
|
|
49
|
+
### "I want to build a..."
|
|
50
|
+
| Task | Relevant Topics |
|
|
51
|
+
|------|-----------------|
|
|
52
|
+
| **Web App** | 4 (Web Dev), 5 (Backend), 6 (Database) |
|
|
53
|
+
| **Mobile App** | 1 (Dart/Flutter), 4 (HTML/CSS) |
|
|
54
|
+
| **API** | 5 (Backend), 12 (Prompt), 13 (Tool Calling) |
|
|
55
|
+
| **AI Agent** | 14 (Agent Core), 15 (Memory), 16 (RAG) |
|
|
56
|
+
| **Code Generator** | 11 (Code AI), 12 (Prompt), 17 (Codebase Intel) |
|
|
57
|
+
| **Chatbot** | 9 (LLM), 12 (Prompt), 27 (Voice) |
|
|
58
|
+
| **Data Pipeline** | 6 (Database), 7 (AI), 16 (RAG) |
|
|
59
|
+
| **ML Model** | 7 (AI), 8 (Deep Learning), 10 (Training) |
|
|
60
|
+
| **DevOps Tool** | 19 (Terminal), 24 (Git), 32 (Cloud) |
|
|
61
|
+
| **Security Tool** | 22 (Security), 20 (Verification) |
|
|
62
|
+
|
|
63
|
+
### "How do I..."
|
|
64
|
+
| Action | Relevant Topics |
|
|
65
|
+
|--------|-----------------|
|
|
66
|
+
| **Read a file** | 18 (File Tools) |
|
|
67
|
+
| **Run a command** | 19 (Terminal Agent) |
|
|
68
|
+
| **Generate code** | 11 (Code AI), 12 (Prompt) |
|
|
69
|
+
| **Fix a bug** | 21 (Debugging), 20 (Verification) |
|
|
70
|
+
| **Search codebase** | 17 (Codebase Intel) |
|
|
71
|
+
| **Use Git** | 24 (Git) |
|
|
72
|
+
| **Deploy to cloud** | 32 (Cloud) |
|
|
73
|
+
| **Add authentication** | 22 (Security), 5 (Backend) |
|
|
74
|
+
| **Implement RAG** | 16 (RAG) |
|
|
75
|
+
| **Build multi-agent** | 35 (Advanced Agent) |
|
|
76
|
+
|
|
77
|
+
---
|
|
78
|
+
|
|
79
|
+
## 📊 Capability Matrix
|
|
80
|
+
|
|
81
|
+
### Language Support
|
|
82
|
+
| Language | Code | Read | Write | Execute | Debug |
|
|
83
|
+
|----------|------|------|-------|---------|-------|
|
|
84
|
+
| Python | py | ✅ | ✅ | ✅ | ✅ |
|
|
85
|
+
| JavaScript | js | ✅ | ✅ | ✅ | ✅ |
|
|
86
|
+
| TypeScript | ts | ✅ | ✅ | ✅ | ✅ |
|
|
87
|
+
| Dart | dart | ✅ | ✅ | ✅ | ✅ |
|
|
88
|
+
| SQL | sql | ✅ | ✅ | ✅ | ✅ |
|
|
89
|
+
| HTML | html | ✅ | ✅ | - | ✅ |
|
|
90
|
+
| CSS | css | ✅ | ✅ | - | ✅ |
|
|
91
|
+
| Bash | sh | ✅ | ✅ | ✅ | ✅ |
|
|
92
|
+
|
|
93
|
+
### Framework Support
|
|
94
|
+
| Framework | Type | Can Build |
|
|
95
|
+
|-----------|------|-----------|
|
|
96
|
+
| React | Frontend | Web apps, SPAs |
|
|
97
|
+
| Next.js | Full-stack | SSR apps, APIs |
|
|
98
|
+
| Vue | Frontend | Web apps |
|
|
99
|
+
| Angular | Frontend | Enterprise apps |
|
|
100
|
+
| FastAPI | Backend | REST APIs |
|
|
101
|
+
| Flask | Backend | Microservices |
|
|
102
|
+
| Django | Backend | Full-stack apps |
|
|
103
|
+
| Express | Backend | Node.js APIs |
|
|
104
|
+
| Flutter | Mobile | iOS/Android apps |
|
|
105
|
+
|
|
106
|
+
### Database Support
|
|
107
|
+
| Database | Type | Use Case |
|
|
108
|
+
|----------|------|----------|
|
|
109
|
+
| PostgreSQL | SQL | Complex queries, production |
|
|
110
|
+
| MySQL | SQL | Web applications |
|
|
111
|
+
| SQLite | SQL | Embedded, testing |
|
|
112
|
+
| MongoDB | NoSQL | Documents, flexible schema |
|
|
113
|
+
| Redis | Cache | Caching, sessions |
|
|
114
|
+
| FAISS | Vector | Similarity search |
|
|
115
|
+
| Chroma | Vector | AI embeddings |
|
|
116
|
+
|
|
117
|
+
---
|
|
118
|
+
|
|
119
|
+
## 🧠 AI Concepts Quick Reference
|
|
120
|
+
|
|
121
|
+
### LLM Pipeline
|
|
122
|
+
```
|
|
123
|
+
Input → Tokenization → Embedding → Transformer → Logits → Softmax → Output
|
|
124
|
+
```
|
|
125
|
+
|
|
126
|
+
### Agent Loop
|
|
127
|
+
```
|
|
128
|
+
Think → Act → Observe → Evaluate → Fix → Repeat
|
|
129
|
+
```
|
|
130
|
+
|
|
131
|
+
### RAG Pipeline
|
|
132
|
+
```
|
|
133
|
+
Query → Embedding → Vector Search → Retrieval → Context Injection → LLM → Response
|
|
134
|
+
```
|
|
135
|
+
|
|
136
|
+
### Training Pipeline
|
|
137
|
+
```
|
|
138
|
+
Data → Preprocessing → Training → Validation → Testing → Deployment
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
---
|
|
142
|
+
|
|
143
|
+
## 📚 Learning Path
|
|
144
|
+
|
|
145
|
+
### Phase 1: Foundation (Weeks 1-4)
|
|
146
|
+
- [ ] Python, JavaScript, TypeScript
|
|
147
|
+
- [ ] HTML, CSS, SQL
|
|
148
|
+
- [ ] Git, Terminal
|
|
149
|
+
- [ ] Computer Fundamentals
|
|
150
|
+
|
|
151
|
+
### Phase 2: Web Development (Weeks 5-8)
|
|
152
|
+
- [ ] React / Next.js
|
|
153
|
+
- [ ] FastAPI / Express
|
|
154
|
+
- [ ] PostgreSQL / MongoDB
|
|
155
|
+
- [ ] REST API, WebSocket
|
|
156
|
+
|
|
157
|
+
### Phase 3: AI/ML (Weeks 9-12)
|
|
158
|
+
- [ ] Machine Learning
|
|
159
|
+
- [ ] Deep Learning
|
|
160
|
+
- [ ] PyTorch
|
|
161
|
+
- [ ] Transformer Architecture
|
|
162
|
+
|
|
163
|
+
### Phase 4: LLM & Agent (Weeks 13-16)
|
|
164
|
+
- [ ] LLM Core Concepts
|
|
165
|
+
- [ ] Prompt Engineering
|
|
166
|
+
- [ ] Tool Calling
|
|
167
|
+
- [ ] Agent Architecture
|
|
168
|
+
|
|
169
|
+
### Phase 5: Code AI (Weeks 17-20)
|
|
170
|
+
- [ ] Code Generation
|
|
171
|
+
- [ ] Codebase Intelligence
|
|
172
|
+
- [ ] File System Tools
|
|
173
|
+
- [ ] Terminal Agent
|
|
174
|
+
|
|
175
|
+
### Phase 6: Advanced (Weeks 21-24)
|
|
176
|
+
- [ ] Security
|
|
177
|
+
- [ ] Multi-Agent System
|
|
178
|
+
- [ ] Voice/Image AI
|
|
179
|
+
- [ ] Cloud Deployment
|
|
180
|
+
|
|
181
|
+
---
|
|
182
|
+
|
|
183
|
+
## 🔗 Cross-References
|
|
184
|
+
|
|
185
|
+
### Topics That Build on Each Other
|
|
186
|
+
```
|
|
187
|
+
1 (Programming) → 4 (Web) → 5 (Backend) → 6 (Database)
|
|
188
|
+
↓
|
|
189
|
+
7 (AI Foundation) → 8 (Deep Learning) → 9 (LLM) → 10 (Training)
|
|
190
|
+
↓
|
|
191
|
+
11 (Code AI) → 12 (Prompt) → 13 (Tool Calling) → 14 (Agent Core)
|
|
192
|
+
↓
|
|
193
|
+
15 (Memory) → 16 (RAG) → 17 (Codebase Intel) → 18-21 (Tools)
|
|
194
|
+
↓
|
|
195
|
+
22 (Security) → 23 (Packages) → 24 (Git) → 25-34 (Advanced)
|
|
196
|
+
↓
|
|
197
|
+
35 (Multi-Agent)
|
|
198
|
+
```
|
|
199
|
+
|
|
200
|
+
---
|
|
201
|
+
|
|
202
|
+
*Total Topics: 35*
|
|
203
|
+
*Total Sub-topics: 500+*
|
|
204
|
+
*Last Updated: 2026-07-26*
|