agentbouncer 0.0.1

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 (4) hide show
  1. package/LICENSE +18 -0
  2. package/README.md +9 -0
  3. package/index.ts +5 -0
  4. package/package.json +23 -0
package/LICENSE ADDED
@@ -0,0 +1,18 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 AgentBouncer
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files, to deal in the Software
7
+ without restriction, including without limitation the rights to use, copy,
8
+ modify, merge, publish, distribute, sublicense, and/or sell copies of the
9
+ Software, and to permit persons to whom the Software is furnished to do so.
10
+
11
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
12
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
13
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
14
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
15
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
16
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
17
+ SOFTWARE.
18
+ EOF
package/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # agentbouncer
2
+
3
+ Placeholder package for the upcoming AgentBouncer SDK.
4
+
5
+ The real SDK will be published here soon.
6
+
7
+ ## Status
8
+
9
+ This package is currently reserved for the official AgentBouncer SDK.
package/index.ts ADDED
@@ -0,0 +1,5 @@
1
+ export function agentBouncer() {
2
+ throw new Error(
3
+ "agentbouncer is a placeholder package. The SDK will be released soon."
4
+ );
5
+ }
package/package.json ADDED
@@ -0,0 +1,23 @@
1
+ {
2
+ "name": "agentbouncer",
3
+ "version": "0.0.1",
4
+ "description": "Placeholder package for the upcoming AgentBouncer SDK.",
5
+ "main": "index.ts",
6
+ "type": "module",
7
+ "keywords": [
8
+ "agentbouncer",
9
+ "sdk",
10
+ "ai",
11
+ "security"
12
+ ],
13
+ "author": "Your Name",
14
+ "license": "MIT",
15
+ "files": [
16
+ "index.js",
17
+ "README.md",
18
+ "LICENSE"
19
+ ],
20
+ "scripts": {
21
+ "test": "echo \"Error: no test specified\" && exit 1"
22
+ }
23
+ }