yeknal 1.0.0 → 1.0.2
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/README.md +79 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
# yeknal
|
|
2
|
+
|
|
3
|
+
A CLI tool to instantly fetch project guideline templates (Security, Design, SEO) into any repository.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
No installation needed — just use `npx`:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npx yeknal <category>
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
|
|
15
|
+
Run any of the following commands from the root of your project:
|
|
16
|
+
|
|
17
|
+
### Security
|
|
18
|
+
|
|
19
|
+
Fetches the **Security-Master.md** guideline and automatically runs a security audit on your project, saving the results to `security-audit.log`.
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
npx yeknal security
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
**Output files:**
|
|
26
|
+
- `Security-Master.md` — Security best practices and policies
|
|
27
|
+
- `security-audit.log` — Automated audit results for your project
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
31
|
+
### Design
|
|
32
|
+
|
|
33
|
+
Fetches the **Design.md** guideline with UI/UX design principles and standards.
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
npx yeknal design
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
**Output files:**
|
|
40
|
+
- `Design.md` — Design system guidelines
|
|
41
|
+
|
|
42
|
+
---
|
|
43
|
+
|
|
44
|
+
### SEO
|
|
45
|
+
|
|
46
|
+
Fetches the **SEO-Prompt.md** guideline with SEO improvement strategies.
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
npx yeknal seo
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
**Output files:**
|
|
53
|
+
- `SEO-Prompt.md` — SEO checklist and improvement prompts
|
|
54
|
+
|
|
55
|
+
## Examples
|
|
56
|
+
|
|
57
|
+
```bash
|
|
58
|
+
# Navigate to any project
|
|
59
|
+
cd my-project
|
|
60
|
+
|
|
61
|
+
# Pull security guidelines + run audit
|
|
62
|
+
npx yeknal security
|
|
63
|
+
|
|
64
|
+
# Pull design guidelines
|
|
65
|
+
npx yeknal design
|
|
66
|
+
|
|
67
|
+
# Pull SEO guidelines
|
|
68
|
+
npx yeknal seo
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
## How It Works
|
|
72
|
+
|
|
73
|
+
1. The CLI fetches the requested markdown file from a remote GitHub repository.
|
|
74
|
+
2. The file is saved directly into your current working directory.
|
|
75
|
+
3. For `security`, it additionally runs `npx secure-repo audit` and logs the results.
|
|
76
|
+
|
|
77
|
+
## License
|
|
78
|
+
|
|
79
|
+
ISC
|