@nrafinia/csmesh 0.8.1 → 0.9.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 (2) hide show
  1. package/README.md +9 -9
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -23,14 +23,14 @@ Built for AI coding agents and developers who are tired of multi-turn "file-hopp
23
23
  ```bash
24
24
  $ csmesh trace PaymentController.Post --budget 600
25
25
 
26
- PaymentController.Post {http:POST /charge} Api/PaymentController.cs:14
27
- -> CreatePaymentCommandHandler.Handle [mediatr via Send(CreatePaymentCommand)] App/CreatePaymentCommand.cs:18
26
+ PaymentController.Post {http:POST /charge} Api/PaymentController.cs:14-26
27
+ -> CreatePaymentCommandHandler.Handle [mediatr via Send(CreatePaymentCommand)] App/CreatePaymentCommand.cs:18-31
28
28
  -> IPaymentGateway.Authorize Infra/Repositories.cs:11
29
- -> StripeGateway.Authorize [impl, di-bound] Infra/Repositories.cs:29
29
+ -> StripeGateway.Authorize [impl, di-bound] Infra/Repositories.cs:29-33
30
30
  -> IPaymentRepository.Add Infra/Repositories.cs:7
31
- -> PaymentRepository.Add [impl, di-bound] Infra/Repositories.cs:17
32
- -> AppDbContext.SavePayment Infra/Repositories.cs:34
33
- -> InMemoryPaymentRepository.Add [impl] Infra/Repositories.cs:23
31
+ -> PaymentRepository.Add [impl, di-bound] Infra/Repositories.cs:17-22
32
+ -> AppDbContext.SavePayment Infra/Repositories.cs:35-40
33
+ -> InMemoryPaymentRepository.Add [impl] Infra/Repositories.cs:24-27
34
34
  ```
35
35
 
36
36
 
@@ -209,8 +209,8 @@ Anything below the threshold prints its score and origin inline rather than blen
209
209
  ```text
210
210
  $ csmesh impl IStore --budget 300
211
211
  IStore -- 2 implementation(s)
212
- SqlStore [di:scoped, ?0.75 assembly-scan] src/Data/SqlStore.cs:12 @ src/Api/Startup.cs:41
213
- InMemoryStore [test] tests/Fakes/InMemoryStore.cs:8
212
+ SqlStore [di:scoped, ?0.75 assembly-scan] src/Data/SqlStore.cs:12-40 @ src/Api/Startup.cs:41
213
+ InMemoryStore [test] tests/Fakes/InMemoryStore.cs:8-20
214
214
  ```
215
215
 
216
216
  And what csmesh could not resolve is an answer too, not a silence:
@@ -536,7 +536,7 @@ csmesh usage --tail 10 # Last 10 raw invocations
536
536
  ```
537
537
 
538
538
  #### `csmesh doctor`
539
- Diagnoses index freshness, dirty files, caller attribution, and agent skill configurations. It warns when a project's compilation reports CS8795 — a source generator whose output is not on disk — naming the project, the count, and the `EmitCompilerGeneratedFiles=true` build that fixes it. It also warns when a `PackageReference` names an in-scope project's package id: that project's types are not bound through the package, and a `ProjectReference` is the fix.
539
+ Diagnoses index freshness, dirty files, caller attribution, and agent skill configurations. It warns when a project's compilation reports CS8795 — a source generator whose output is not on disk — naming the project, the count, and the `EmitCompilerGeneratedFiles=true` build that fixes it. It also warns when a `PackageReference` names an in-scope project's package id: that project's types are not bound through the package, and a `ProjectReference` is the fix. It also names the solution files that were found but did not fully decide scope, showing how many of their project paths matched on disk and why one could not be read, and states when the scope fell back to the `ProjectReference` closure.
540
540
  ```bash
541
541
  csmesh doctor
542
542
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nrafinia/csmesh",
3
- "version": "0.8.1",
3
+ "version": "0.9.0",
4
4
  "description": "Structural code intelligence & call-graph engine for C# and .NET — built for AI coding agents under hard token budgets",
5
5
  "bin": {
6
6
  "csmesh": "./bin/run.js"