doc-fetch-cli 2.1.0 → 2.3.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.
Files changed (3) hide show
  1. package/README.md +10 -8
  2. package/doc-fetch +0 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -76,14 +76,16 @@ doc-fetch \
76
76
  ```
77
77
 
78
78
  ### Command Options
79
- | Flag | Short | Description | Default |
80
- |------|-------|-------------|---------|
81
- | `--url` | `-u` | Base URL to fetch documentation from | **Required** |
82
- | `--output` | `-o` | Output file path | `docs.md` |
83
- | `--depth` | `-d` | Maximum crawl depth | `2` |
84
- | `--concurrent` | `-c` | Number of concurrent fetchers | `5` |
85
- | `--llm-txt` | | Generate AI-friendly llm.txt index | `false` |
86
- | `--user-agent` | | Custom user agent string | `DocFetch/1.0` |
79
+ | Flag | Description | Default |
80
+ |------|-------------|---------|
81
+ | `--url` | Base URL to fetch documentation from | **Required** |
82
+ | `--output` | Output file path | `docs.md` |
83
+ | `--depth` | Maximum crawl depth | `2` |
84
+ | `--concurrent` | Number of concurrent workers | `5` |
85
+ | `--llm-txt` | Generate AI-friendly llm.txt index | `false` |
86
+ | `--user-agent` | Custom user agent string | `DocFetch/1.0` |
87
+
88
+ **Note**: Short flags (e.g., `-c`, `-d`) have been removed for clarity. Use full flag names only.
87
89
 
88
90
  ## ⚡ Advanced Tips for Large Documentation Sites
89
91
 
package/doc-fetch CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "doc-fetch-cli",
3
- "version": "2.1.0",
3
+ "version": "2.3.0",
4
4
  "description": "Dynamic documentation fetching CLI that converts entire documentation sites to single markdown files for AI/LLM consumption",
5
5
  "bin": {
6
6
  "doc-fetch": "./bin/doc-fetch.js"