@unerr-ai/unerr 0.0.0-beta.8 → 0.0.0-beta.9

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 CHANGED
@@ -242,22 +242,38 @@ Every shell command the agent runs is classified (645+ command patterns + conten
242
242
  | Python | 1 | ✓ | ✓ | ✓ | ✓ |
243
243
  | Go | 1 | ✓ | ✓ | ✓ | ✓ |
244
244
  | Java | 1 | ✓ | ✓ | ✓ | ✓ |
245
+ | Kotlin | 1 | ✓ | ✓ | ✓ | ✓ |
246
+ | Scala | 1 | ✓ | ✓ | ✓ | ✓ |
245
247
  | Rust | 1 | ✓ | ✓ | ✓ | ✓ |
246
- | Ruby | 1 | ✓ | ✓ | ✓ | |
247
- | C# | 1 | ✓ | ✓ | ✓ | |
248
- | C | 2 | ✓ | ✓ | ✓ | |
249
- | C++ | 2 | ✓ | ✓ | ✓ | |
248
+ | Ruby | 1 | ✓ | ✓ | ✓ | |
249
+ | C | 1 | ✓ | ✓ | ✓ | |
250
+ | C++ | 1 | ✓ | ✓ | ✓ | |
251
+ | C# | 1 | ✓ | ✓ | ✓ | |
250
252
  | PHP | 2 | ✓ | ✓ | ✓ | — |
251
253
  | Swift | 2 | ✓ | ✓ | ✓ | — |
252
- | Kotlin | 2 | ✓ | ✓ | ✓ | — |
253
- | Scala | 2 | ✓ | ✓ | ✓ | — |
254
254
  | Lua | 2 | ✓ | ✓ | ✓ | — |
255
255
  | Dart | 2 | ✓ | ✓ | ✓ | — |
256
256
  | Elixir | 2 | ✓ | ✓ | ✓ | — |
257
257
  | Zig | 2 | ✓ | ✓ | ✓ | — |
258
258
 
259
- **Tier 1** (8 languages): Full tree-sitter AST + dedicated extraction plugins + SCIP compiler-verified call graphs where available.
260
- **Tier 2** (10 languages): Tree-sitter AST + generic extraction. Regex fallback for unsupported languages.
259
+ **Tier 1** (13 languages): Full tree-sitter AST + dedicated extraction plugins + SCIP compiler-verified call graphs where available.
260
+ **Tier 2** (5 languages): Tree-sitter AST + generic extraction. Regex fallback for unsupported languages.
261
+
262
+ #### Tier 3: Discoverable (Search Only)
263
+
264
+ Tier 3 files are indexed for search discoverability — agents can find them via `search_code` using filename tokens and format-specific content extraction (headings, resource names, model definitions, etc.). No code entity extraction.
265
+
266
+ | Category | Extensions |
267
+ |----------|------------|
268
+ | Documentation | `.md`, `.mdx`, `.txt`, `.rst`, `.adoc`, `.org`, `.tex` |
269
+ | Declarative / IaC | `.tf`, `.tfvars`, `.hcl`, `.yaml`, `.yml`, `.toml`, `.json`, `.xml` |
270
+ | Schemas / IDL | `.proto`, `.graphql`, `.gql`, `.prisma`, `.avsc`, `.thrift`, `.smithy` |
271
+ | SQL | `.sql` |
272
+ | Shell | `.sh`, `.bash`, `.zsh` |
273
+ | Web / Templates | `.html`, `.css`, `.scss`, `.sass`, `.less`, `.vue`, `.svelte`, `.astro`, `.j2`, `.tmpl`, `.hbs`, `.ejs`, `.pug` |
274
+ | Build / Make | `.cmake`, `.bazel`, `.bzl`, `.mk`, `Makefile`, `Dockerfile`, `Jenkinsfile` |
275
+ | Config | `.ini`, `.cfg`, `.conf`, `.properties`, `.csv`, `.tsv`, `.editorconfig` |
276
+ | CI/CD | `.github/workflows/*.yml`, `.gitlab-ci.yml` |
261
277
 
262
278
  ---
263
279