sonecheck 0.0.3 → 0.0.4

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
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2026 aifuun
3
+ Copyright (c) 2026 ROLLIGEN
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # SoneCheck
2
2
 
3
- **The sub-second System-1 AI code risk inspector for VS Code and Git hooks.**
3
+ **The sub-second System-1 AI code risk inspector for VS Code.**
4
4
 
5
5
  SoneCheck reads your staged diff, splits it into hunks, scores each hunk with a
6
6
  System-1 decision model, and surfaces only the one to three changes that actually
@@ -55,6 +55,6 @@ here only to describe a technical dependency.
55
55
  [MIT](LICENSE)
56
56
 
57
57
  > Design documents are written in Chinese and live in the
58
- > [`docs/` directory](https://github.com/aifuun/sonecheck/tree/main/docs).
58
+ > [`docs/` directory](https://github.com/rolligen/sonecheck/tree/main/docs).
59
59
  > Issues and discussions are welcome via
60
- > [GitHub Issues](https://github.com/aifuun/sonecheck/issues).
60
+ > [GitHub Issues](https://github.com/rolligen/sonecheck/issues).
package/index.js CHANGED
@@ -10,7 +10,7 @@
10
10
  * silently, so that anyone who installs this version learns immediately where
11
11
  * the real implementation lives.
12
12
  *
13
- * Roadmap and design documents: https://github.com/aifuun/sonecheck
13
+ * Roadmap and design documents: https://github.com/rolligen/sonecheck
14
14
  *
15
15
  * @see README.md
16
16
  */
@@ -35,7 +35,7 @@ function createNotImplementedError(apiName) {
35
35
  `sonecheck@${RESERVED_VERSION} does not implement "${apiName}" yet. ` +
36
36
  `This version only reserves the package name. ` +
37
37
  `The first functional release is ${FIRST_FUNCTIONAL_VERSION}. ` +
38
- `Status: https://github.com/aifuun/sonecheck`
38
+ `Status: https://github.com/rolligen/sonecheck`
39
39
  );
40
40
  error.code = NOT_IMPLEMENTED;
41
41
  return error;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "sonecheck",
3
- "version": "0.0.3",
4
- "description": "Sub-second System-1 AI code risk inspector for VS Code and Git hooks. Name-reservation release; the first functional release is 0.1.0.",
3
+ "version": "0.0.4",
4
+ "description": "Sub-second System-1 AI code risk inspector for VS Code. Name-reservation release; the first functional release is 0.1.0.",
5
5
  "keywords": [
6
6
  "vscode",
7
7
  "vscode-extension",
@@ -18,14 +18,17 @@
18
18
  "developer-tools"
19
19
  ],
20
20
  "license": "MIT",
21
- "author": "aifuun",
22
- "homepage": "https://github.com/aifuun/sonecheck#readme",
21
+ "author": {
22
+ "name": "ROLLIGEN",
23
+ "url": "https://github.com/rolligen"
24
+ },
25
+ "homepage": "https://github.com/rolligen/sonecheck#readme",
23
26
  "repository": {
24
27
  "type": "git",
25
- "url": "git+https://github.com/aifuun/sonecheck.git"
28
+ "url": "git+https://github.com/rolligen/sonecheck.git"
26
29
  },
27
30
  "bugs": {
28
- "url": "https://github.com/aifuun/sonecheck/issues"
31
+ "url": "https://github.com/rolligen/sonecheck/issues"
29
32
  },
30
33
  "main": "./index.js",
31
34
  "types": "./index.d.ts",