@rankcli/agent-runtime 0.0.5 → 0.0.6

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/dist/index.js CHANGED
@@ -18218,7 +18218,9 @@ var MEDIUM_PRIORITY_PATTERNS = [
18218
18218
  ];
18219
18219
  var EXCLUDE_PATTERNS = [
18220
18220
  /\.(png|jpg|jpeg|gif|svg|webp|ico|pdf|zip|tar|gz)$/i,
18221
- // Files
18221
+ // Images & archives
18222
+ /\.(json|xml|txt|webmanifest|rss|atom)$/i,
18223
+ // Data files (not HTML)
18222
18224
  /^(mailto:|tel:|javascript:|#)/i,
18223
18225
  // Non-HTTP
18224
18226
  /\/(api|_next|static|assets|cdn)\//i,
package/dist/index.mjs CHANGED
@@ -17158,7 +17158,9 @@ var MEDIUM_PRIORITY_PATTERNS = [
17158
17158
  ];
17159
17159
  var EXCLUDE_PATTERNS = [
17160
17160
  /\.(png|jpg|jpeg|gif|svg|webp|ico|pdf|zip|tar|gz)$/i,
17161
- // Files
17161
+ // Images & archives
17162
+ /\.(json|xml|txt|webmanifest|rss|atom)$/i,
17163
+ // Data files (not HTML)
17162
17164
  /^(mailto:|tel:|javascript:|#)/i,
17163
17165
  // Non-HTTP
17164
17166
  /\/(api|_next|static|assets|cdn)\//i,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rankcli/agent-runtime",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "description": "RankCLI agent runtime - executes SEO audits and fixes with AI",
5
5
  "homepage": "https://rankcli.dev",
6
6
  "main": "dist/index.js",
@@ -26,7 +26,8 @@ const MEDIUM_PRIORITY_PATTERNS = [
26
26
 
27
27
  // Patterns to exclude
28
28
  const EXCLUDE_PATTERNS = [
29
- /\.(png|jpg|jpeg|gif|svg|webp|ico|pdf|zip|tar|gz)$/i, // Files
29
+ /\.(png|jpg|jpeg|gif|svg|webp|ico|pdf|zip|tar|gz)$/i, // Images & archives
30
+ /\.(json|xml|txt|webmanifest|rss|atom)$/i, // Data files (not HTML)
30
31
  /^(mailto:|tel:|javascript:|#)/i, // Non-HTTP
31
32
  /\/(api|_next|static|assets|cdn)\//i, // Technical paths
32
33
  /[?&](utm_|ref=|source=)/i, // Tracking params