@hubhorizonllc/squick 1.2.0 → 1.3.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 +19 -6
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -1,13 +1,15 @@
1
1
  # @hubhorizonllc/squick
2
2
 
3
+ [![npm](https://img.shields.io/npm/v/@hubhorizonllc/squick.svg?style=flat-square&logo=npm)](https://www.npmjs.com/package/@hubhorizonllc/squick)
4
+
3
5
  Pre-computed, LLM-targeted code context for AI coding agents.
4
6
 
5
7
  This npm package is a thin wrapper that installs the right
6
8
  platform-specific binary via `optionalDependencies` and exposes it as
7
- the `squick` command. The npm name `squick` was already taken in
8
- 2015 by an unrelated, abandoned dustjs/markdown plugin, so the
9
- Horizon LLC distribution lives under the org scope. On PyPI and
10
- crates.io the package is unscoped (`squick`) as expected.
9
+ the `squick` command. The unscoped name `squick` was already taken
10
+ in 2015 by an unrelated, abandoned gulp/dustjs plugin, so the
11
+ Horizon LLC distribution lives under the `@hubhorizonllc` scope. On
12
+ PyPI and crates.io the package is unscoped (`squick`, `squick-cli`).
11
13
 
12
14
  ## Install
13
15
 
@@ -27,8 +29,14 @@ squick watch ./your-project # re-scan on file save
27
29
  squick mcp # start an MCP server on stdio
28
30
  ```
29
31
 
30
- See the [main project README](https://github.com/pwnaxe/squick)
31
- for full documentation, dictionary format, and MCP client configuration.
32
+ A scan writes three small files into `.squick/`:
33
+
34
+ - `conventions.md` - stack, libraries, layout. Attach to your AI chat.
35
+ - `schemas.md` - data schemas and endpoints. Attach for backend questions.
36
+ - `context.md` - tiny index pointing at the above.
37
+
38
+ Add `--full` to also emit `context.ndjson` and `graph.txt` (programmatic
39
+ formats for MCP servers and scripts).
32
40
 
33
41
  ## Supported platforms
34
42
 
@@ -40,6 +48,11 @@ for full documentation, dictionary format, and MCP client configuration.
40
48
  | macOS | arm64 | `@hubhorizonllc/squick-darwin-arm64` |
41
49
  | Windows | x86_64 | `@hubhorizonllc/squick-win32-x64` |
42
50
 
51
+ ## Built by Horizon LLC
52
+
53
+ We design and build custom AI developer tooling, MCP integrations, and
54
+ agent infrastructure for engineering teams. [pixelhorizon.dev](https://pixelhorizon.dev).
55
+
43
56
  ## License
44
57
 
45
58
  Apache-2.0. Copyright 2026 Horizon LLC.
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@hubhorizonllc/squick",
3
- "version": "1.2.0",
3
+ "version": "1.3.0",
4
4
  "description": "Pre-computed LLM context for AI coding agents.",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Horizon LLC",
7
- "homepage": "https://github.com/pwnaxe/squick",
7
+ "homepage": "https://pixelhorizon.dev",
8
8
  "repository": {
9
9
  "type": "git",
10
10
  "url": "https://github.com/pwnaxe/squick.git"
@@ -29,10 +29,10 @@
29
29
  "node": ">=18"
30
30
  },
31
31
  "optionalDependencies": {
32
- "@hubhorizonllc/squick-linux-x64": "1.2.0",
33
- "@hubhorizonllc/squick-linux-arm64": "1.2.0",
34
- "@hubhorizonllc/squick-darwin-x64": "1.2.0",
35
- "@hubhorizonllc/squick-darwin-arm64": "1.2.0",
36
- "@hubhorizonllc/squick-win32-x64": "1.2.0"
32
+ "@hubhorizonllc/squick-linux-x64": "1.3.0",
33
+ "@hubhorizonllc/squick-linux-arm64": "1.3.0",
34
+ "@hubhorizonllc/squick-darwin-x64": "1.3.0",
35
+ "@hubhorizonllc/squick-darwin-arm64": "1.3.0",
36
+ "@hubhorizonllc/squick-win32-x64": "1.3.0"
37
37
  }
38
38
  }