opencodekit 0.23.2 → 0.23.3

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
@@ -20,7 +20,7 @@ var __require = /* @__PURE__ */ createRequire(import.meta.url);
20
20
 
21
21
  //#endregion
22
22
  //#region package.json
23
- var version = "0.23.2";
23
+ var version = "0.23.3";
24
24
 
25
25
  //#endregion
26
26
  //#region src/utils/license.ts
@@ -13,8 +13,9 @@
13
13
  5. This `AGENTS.md`
14
14
  6. **Skills** — before non-trivial work, check the available skills list injected at session start. If a skill's purpose matches the task, load and follow it.
15
15
  7. Memory (`memory-search`, `observation`) — create observations, search/read memory
16
- 8. Srcwalk (`srcwalk_search`, `srcwalk_read`, `srcwalk_files`, `srcwalk_map`, `srcwalk_callers`, `srcwalk_callees`, `srcwalk_flow`, `srcwalk_deps`, `srcwalk_impact`) code navigation and intelligence
17
- 9. Project files and codebase evidence
16
+ 8. Csearch (`csearch`) multi-keyword code chunk search with BM25 ranking. Provide specific keywords; returns complete function/class code chunks ranked by relevance. Use when you need to find code by what it does, not by exact symbol name.
17
+ 9. Srcwalk (`srcwalk_read`, `srcwalk_map`, `srcwalk_callers`, `srcwalk_callees`, `srcwalk_flow`, `srcwalk_deps`, `srcwalk_impact`) — structural code navigation (file reading, call graphs, import analysis, directory maps, blast-radius triage). Use when you have a known file/symbol and need to trace connections.
18
+ 10. Project files and codebase evidence
18
19
 
19
20
  If sources conflict, state the conflict explicitly. Official docs > code > blog posts > AI-generated content.
20
21