@ataraxy-labs/sem 0.3.23 → 0.3.24

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 (2) hide show
  1. package/README.md +10 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,3 +1,7 @@
1
+ > **Part of the [Ataraxy Labs](https://ataraxy-labs.com) stack** — agent-native infrastructure for software development. See also: [weave](https://ataraxy-labs.com/weave) (entity-level git merge driver) · [inspect](https://github.com/Ataraxy-Labs/inspect) (semantic code review) · [opensessions](https://github.com/Ataraxy-Labs/opensessions) (tmux sidebar for coding agents).
2
+ >
3
+ > Read the manifesto: https://ataraxy-labs.com/#thesis · Essays: https://ataraxy-labs.com/blogs · LLMs: https://ataraxy-labs.com/llms.txt
4
+
1
5
  <p align="center">
2
6
  <img src="assets/banner.svg" alt="sem" width="600" />
3
7
  </p>
@@ -165,12 +169,17 @@ sem log authenticateUser --json
165
169
 
166
170
  ### sem entities
167
171
 
168
- List all entities in a file with their types and line ranges.
172
+ List all entities under a file or directory path. No path is the same as `.`.
169
173
 
170
174
  ```bash
175
+ sem entities
176
+
177
+ sem entities .
178
+
171
179
  sem entities src/auth.ts
172
180
 
173
181
  # JSON output
182
+ sem entities --json
174
183
  sem entities src/auth.ts --json
175
184
  ```
176
185
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ataraxy-labs/sem",
3
- "version": "0.3.23",
3
+ "version": "0.3.24",
4
4
  "description": "npm wrapper for the sem CLI. Downloads the matching release binary and exposes the sem command in node_modules/.bin.",
5
5
  "license": "MIT OR Apache-2.0",
6
6
  "type": "module",