@hubhorizonllc/squick 1.2.0 → 1.4.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.
package/LICENSE CHANGED
@@ -186,7 +186,7 @@
186
186
  same "printed page" as the copyright notice for easier
187
187
  identification within third-party archives.
188
188
 
189
- Copyright 2026 Horizon LLC
189
+ Copyright 2026 Hub Horizon LLC
190
190
 
191
191
  Licensed under the Apache License, Version 2.0 (the "License");
192
192
  you may not use this file except in compliance with the License.
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
+ Hub 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,7 +48,13 @@ 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 Hub Horizon LLC
52
+
53
+ Squick is part of [pixelhorizon.dev](https://pixelhorizon.dev), the
54
+ developer-tools line from Hub Horizon LLC. We design and build custom AI
55
+ tooling, MCP integrations, and agent infrastructure for engineering teams.
56
+
43
57
  ## License
44
58
 
45
- Apache-2.0. Copyright 2026 Horizon LLC.
46
- "Squick" is a trademark of Horizon LLC.
59
+ Apache-2.0. Copyright 2026 Hub Horizon LLC.
60
+ "Squick" is a trademark of Hub Horizon LLC.
package/bin/squick.js CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- // Copyright 2026 Horizon LLC
2
+ // Copyright 2026 Hub Horizon LLC
3
3
  // SPDX-License-Identifier: Apache-2.0
4
4
  //
5
5
  // Locates the platform-specific Squick binary installed via
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@hubhorizonllc/squick",
3
- "version": "1.2.0",
3
+ "version": "1.4.0",
4
4
  "description": "Pre-computed LLM context for AI coding agents.",
5
5
  "license": "Apache-2.0",
6
- "author": "Horizon LLC",
7
- "homepage": "https://github.com/pwnaxe/squick",
6
+ "author": "Hub Horizon LLC",
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.4.0",
33
+ "@hubhorizonllc/squick-linux-arm64": "1.4.0",
34
+ "@hubhorizonllc/squick-darwin-x64": "1.4.0",
35
+ "@hubhorizonllc/squick-darwin-arm64": "1.4.0",
36
+ "@hubhorizonllc/squick-win32-x64": "1.4.0"
37
37
  }
38
38
  }