@xwss/agentbell 0.1.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/CHANGELOG.md +18 -0
- package/LICENSE +21 -0
- package/README.md +969 -0
- package/RELEASE.md +31 -0
- package/dist/cli.d.ts +2 -0
- package/dist/cli.js +106 -0
- package/dist/cli.js.map +1 -0
- package/dist/commands/doctor.d.ts +4 -0
- package/dist/commands/doctor.js +159 -0
- package/dist/commands/doctor.js.map +1 -0
- package/dist/commands/init.d.ts +3 -0
- package/dist/commands/init.js +92 -0
- package/dist/commands/init.js.map +1 -0
- package/dist/commands/initHooks.d.ts +9 -0
- package/dist/commands/initHooks.js +455 -0
- package/dist/commands/initHooks.js.map +1 -0
- package/dist/commands/project.d.ts +14 -0
- package/dist/commands/project.js +62 -0
- package/dist/commands/project.js.map +1 -0
- package/dist/commands/send.d.ts +5 -0
- package/dist/commands/send.js +70 -0
- package/dist/commands/send.js.map +1 -0
- package/dist/commands/setup.d.ts +13 -0
- package/dist/commands/setup.js +270 -0
- package/dist/commands/setup.js.map +1 -0
- package/dist/commands/test.d.ts +9 -0
- package/dist/commands/test.js +40 -0
- package/dist/commands/test.js.map +1 -0
- package/dist/commands/verify.d.ts +78 -0
- package/dist/commands/verify.js +725 -0
- package/dist/commands/verify.js.map +1 -0
- package/dist/config.d.ts +123 -0
- package/dist/config.js +72 -0
- package/dist/config.js.map +1 -0
- package/dist/hooks/claudeCode.d.ts +5 -0
- package/dist/hooks/claudeCode.js +88 -0
- package/dist/hooks/claudeCode.js.map +1 -0
- package/dist/hooks/codex.d.ts +4 -0
- package/dist/hooks/codex.js +74 -0
- package/dist/hooks/codex.js.map +1 -0
- package/dist/hooks/vscodeAgent.d.ts +3 -0
- package/dist/hooks/vscodeAgent.js +45 -0
- package/dist/hooks/vscodeAgent.js.map +1 -0
- package/dist/notify/index.d.ts +3 -0
- package/dist/notify/index.js +8 -0
- package/dist/notify/index.js.map +1 -0
- package/dist/notify/local.d.ts +2 -0
- package/dist/notify/local.js +34 -0
- package/dist/notify/local.js.map +1 -0
- package/dist/notify/ntfy.d.ts +10 -0
- package/dist/notify/ntfy.js +57 -0
- package/dist/notify/ntfy.js.map +1 -0
- package/dist/types.d.ts +65 -0
- package/dist/types.js +2 -0
- package/dist/types.js.map +1 -0
- package/dist/utils/context.d.ts +92 -0
- package/dist/utils/context.js +198 -0
- package/dist/utils/context.js.map +1 -0
- package/dist/utils/logger.d.ts +5 -0
- package/dist/utils/logger.js +12 -0
- package/dist/utils/logger.js.map +1 -0
- package/dist/utils/mask.d.ts +1 -0
- package/dist/utils/mask.js +10 -0
- package/dist/utils/mask.js.map +1 -0
- package/dist/utils/paths.d.ts +16 -0
- package/dist/utils/paths.js +93 -0
- package/dist/utils/paths.js.map +1 -0
- package/dist/utils/shell.d.ts +1 -0
- package/dist/utils/shell.js +21 -0
- package/dist/utils/shell.js.map +1 -0
- package/dist/utils/topic.d.ts +2 -0
- package/dist/utils/topic.js +20 -0
- package/dist/utils/topic.js.map +1 -0
- package/package.json +57 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## 0.1.0
|
|
4
|
+
|
|
5
|
+
Initial MVP:
|
|
6
|
+
|
|
7
|
+
- npm package name: `@xwss/agentbell`; installed CLI command: `agentbell`
|
|
8
|
+
|
|
9
|
+
- ntfy Android notification provider
|
|
10
|
+
- setup wizard
|
|
11
|
+
- verify command
|
|
12
|
+
- rich notification context
|
|
13
|
+
- Codex VS Code extension Stop hook on Windows
|
|
14
|
+
- Claude Code Stop hook on Windows
|
|
15
|
+
- VS Code Copilot Agent Stop hook on Windows
|
|
16
|
+
- Windows wrapper strategies for Codex / Claude Code / Copilot Agent
|
|
17
|
+
|
|
18
|
+
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 AgentBell contributors
|
|
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.
|