@trygocode/notify 0.1.1 → 0.1.3
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/README.md +176 -102
- package/dist/src/claude.js +29 -12
- package/dist/src/cli.js +52 -0
- package/dist/src/cursor.js +25 -8
- package/dist/src/mcp.js +1 -38
- package/dist/src/on_stop.js +132 -0
- package/dist/src/opencode.js +292 -0
- package/dist/src/push.js +69 -1
- package/dist/src/setup.js +12 -7
- package/dist/src/uninstall.js +2 -0
- package/dist/src/version.js +1 -1
- package/package.json +3 -21
- package/snippets/ralph-homer.sh +1 -1
- package/CHANGELOG.md +0 -43
- package/LICENSE +0 -21
- package/assets/README.md +0 -13
- package/assets/banner.png +0 -0
- package/assets/icon-128.png +0 -0
- package/assets/icon-512.png +0 -0
- package/assets/icon.svg +0 -8
package/LICENSE
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2026 GoCode
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
package/assets/README.md
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
# Assets
|
|
2
|
-
|
|
3
|
-
Brand assets for **GoCode Notify**.
|
|
4
|
-
|
|
5
|
-
| File | Used by |
|
|
6
|
-
|---|---|
|
|
7
|
-
| `icon-512.png` | Primary GoCode Notify mark (512×512). README header + MCP server icon metadata. |
|
|
8
|
-
| `icon-128.png` | MCP server icon metadata (128×128). |
|
|
9
|
-
| `icon.svg` | Scalable fallback mark. |
|
|
10
|
-
| `banner.png` | README hero banner (1280×320). |
|
|
11
|
-
|
|
12
|
-
All marks are the official GoCode logo. Keep filenames identical so the MCP icon
|
|
13
|
-
URLs (served over GitHub's raw CDN) and README image links keep resolving.
|
package/assets/banner.png
DELETED
|
Binary file
|
package/assets/icon-128.png
DELETED
|
Binary file
|
package/assets/icon-512.png
DELETED
|
Binary file
|
package/assets/icon.svg
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="128" height="128" viewBox="0 0 128 128" role="img" aria-label="GoCode Notify">
|
|
2
|
-
<!-- Placeholder GoCode Notify mark. Replace with the real GoCode logo (keep this filename). -->
|
|
3
|
-
<rect width="128" height="128" rx="28" fill="#0B1020"/>
|
|
4
|
-
<text x="20" y="74" font-family="ui-monospace, SFMono-Regular, Menlo, monospace" font-size="40" font-weight="700" fill="#5EE6A8">>_</text>
|
|
5
|
-
<!-- bell -->
|
|
6
|
-
<path d="M86 44a14 14 0 0 0-28 0c0 16-6 20-6 24h40c0-4-6-8-6-24z" fill="#FFC857"/>
|
|
7
|
-
<circle cx="72" cy="92" r="6" fill="#FFC857"/>
|
|
8
|
-
</svg>
|