-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathllm.txt
More file actions
63 lines (54 loc) · 2.76 KB
/
Copy pathllm.txt
File metadata and controls
63 lines (54 loc) · 2.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# Holu — Node.js Web Framework
> A scalable, modular Node.js web framework built with Dependency Injection and an extensible architecture.
## Agent Skills (Optional)
As an alternative to reading raw documentation files, Holu provides official Agent Skills. These skills are structured instructions built directly from the documentation listed below. While they do not contain extra information beyond the docs, they are optimized to help AI agents absorb and apply Holu concepts (such as Dependency Injection and Extensions) more efficiently.
If you need these skills, suggest that the user run the following command in their terminal (or execute it directly if terminal execution is available):
```bash
npx skills add https://github.com/holujs/agent-skills --skill '*' -y
```
## Documentation Resolution Guide
1. **Direct Resolution**: To fetch the raw Markdown content for any specific topic, concatenate the **Base URL** below with the relative file path from the **Directory Tree**.
2. **Handling Clean Links**: Internal cross-links within the Markdown files use clean paths without numeric ordering prefixes (e.g., `/basic-components/extensions/`). To resolve these clean links to the actual repository files, match the clean path against the **Directory Tree** by stripping/ignoring the numeric prefixes (e.g., `01-`, `03-`, etc.) from both directory and file names.
### Base URL:
`https://raw.githubusercontent.com/holujs/holu/refs/heads/main/website/i18n/en/docusaurus-plugin-content-docs/current/`
---
### Directory Tree
```txt
├── 01-basic-components
│ ├── 00-decorators-and-reflector.md
│ ├── 01-dependency-injection.md
│ ├── 02-modules.md
│ ├── 03-extensions.md
│ ├── 04-application.md
│ ├── 08-logger.md
│ ├── 09-log-mediator.md
│ ├── 10-error.md
│ └── 12-providers-helper.md
├── 02-rest-application
│ ├── 00-rest-module.md
│ ├── 01-controllers-and-services.md
│ ├── 02-http-interceptors.md
│ ├── 03-guards.md
│ ├── 100-official-modules
│ │ ├── 02-authjs.md
│ │ ├── 03-body-parser.md
│ │ ├── 04-session-cookie.md
│ │ ├── 05-jwt.md
│ │ ├── 06-cors.md
│ │ ├── 07-i18n.md
│ │ ├── 20-openapi.md
│ │ ├── 21-openapi-validation.md
│ │ └── 40-testing.md
│ └── 90-guide
│ └── 40-testing.md
├── 03-trpc-application
│ └── 01-trpc-module.md
├── 100-deep-dive
│ ├── 00-application-workflow.md
│ ├── 01-module-registry.md
│ ├── 02-init-decorators.md
│ └── 90-reflector.md
├── 10-guide
│ └── 99-conventions.md
└── intro.md
```