@yegor256/dogent 0.0.1 → 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/README.md +13 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -23,7 +23,7 @@ We respect [agent-sh/agnix](https://github.com/agent-sh/agnix)
|
|
|
23
23
|
Run it on any manifesto file, no installation required:
|
|
24
24
|
|
|
25
25
|
```bash
|
|
26
|
-
npx @yegor256/dogent CLAUDE.md
|
|
26
|
+
npx @yegor256/dogent@0.0.1 CLAUDE.md
|
|
27
27
|
```
|
|
28
28
|
|
|
29
29
|
Lint several files at once:
|
|
@@ -112,7 +112,18 @@ npx @yegor256/dogent CLAUDE.md SKILL.md AGENTS.md
|
|
|
112
112
|
```
|
|
113
113
|
|
|
114
114
|
Prefer the [pre-commit](https://pre-commit.com) framework?
|
|
115
|
-
|
|
115
|
+
Reference `dogent` as a remote hook in `.pre-commit-config.yaml`:
|
|
116
|
+
|
|
117
|
+
```yaml
|
|
118
|
+
repos:
|
|
119
|
+
- repo: https://github.com/yegor256/dogent
|
|
120
|
+
rev: 0.0.1
|
|
121
|
+
hooks:
|
|
122
|
+
- id: dogent
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
Pin `rev` to a released tag for reproducible runs.
|
|
126
|
+
Alternatively, wire `dogent` as a local hook:
|
|
116
127
|
|
|
117
128
|
```yaml
|
|
118
129
|
repos:
|
package/package.json
CHANGED