vibe-agent-toolkit 0.1.0-rc.10

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 (3) hide show
  1. package/README.md +45 -0
  2. package/bin/vat +21 -0
  3. package/package.json +37 -0
package/README.md ADDED
@@ -0,0 +1,45 @@
1
+ # vibe-agent-toolkit
2
+
3
+ > Modular toolkit for building, testing, and deploying portable AI agents
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install -g vibe-agent-toolkit
9
+ ```
10
+
11
+ ## Quick Start
12
+
13
+ ```bash
14
+ # Show version and help
15
+ vat --version
16
+ vat --help
17
+
18
+ # Scan markdown resources
19
+ vat resources scan docs/
20
+
21
+ # Validate link integrity
22
+ vat resources validate docs/
23
+ ```
24
+
25
+ ## Features
26
+
27
+ - **Resource Management**: Intelligent markdown scanning and validation
28
+ - **Link Integrity**: Verify internal links, anchors, and external URLs
29
+ - **CLI-First**: Human-readable YAML output, machine-parseable structure
30
+ - **Configurable**: Project-level configuration via YAML
31
+ - **Cross-Platform**: Works on Windows, macOS, Linux
32
+
33
+ ## Documentation
34
+
35
+ - [CLI Reference](../cli/docs/) - Complete command documentation (or run `vat --help --verbose`)
36
+ - [Architecture](../../docs/architecture/README.md) - Package structure
37
+ - [Getting Started](../../docs/getting-started.md) - Detailed guide
38
+
39
+ ## Development
40
+
41
+ This is the umbrella package that provides the `vat` command. Implementation is in `@vibe-agent-toolkit/cli`.
42
+
43
+ ## License
44
+
45
+ MIT © Jeff Dutton
package/bin/vat ADDED
@@ -0,0 +1,21 @@
1
+ #!/usr/bin/env node
2
+
3
+ /**
4
+ * Lightweight wrapper that delegates to @vibe-agent-toolkit/cli
5
+ * This file is the entry point when installed globally via npm
6
+ */
7
+
8
+ import { createRequire } from 'node:module';
9
+ import { dirname, join } from 'node:path';
10
+ import { fileURLToPath } from 'node:url';
11
+
12
+ const __dirname = dirname(fileURLToPath(import.meta.url));
13
+ const require = createRequire(import.meta.url);
14
+
15
+ // Resolve CLI package
16
+ const cliPkg = require.resolve('@vibe-agent-toolkit/cli/package.json');
17
+ const cliRoot = dirname(cliPkg);
18
+ const wrapperPath = join(cliRoot, 'dist/bin/vat.js');
19
+
20
+ // Execute CLI wrapper
21
+ import(wrapperPath);
package/package.json ADDED
@@ -0,0 +1,37 @@
1
+ {
2
+ "name": "vibe-agent-toolkit",
3
+ "version": "0.1.0-rc.10",
4
+ "description": "Modular toolkit for building, testing, and deploying portable AI agents",
5
+ "bin": {
6
+ "vat": "./bin/vat"
7
+ },
8
+ "files": [
9
+ "bin",
10
+ "README.md"
11
+ ],
12
+ "keywords": [
13
+ "ai",
14
+ "agents",
15
+ "cli",
16
+ "toolkit",
17
+ "markdown",
18
+ "validation",
19
+ "llm"
20
+ ],
21
+ "author": "Jeff Dutton",
22
+ "license": "MIT",
23
+ "repository": {
24
+ "type": "git",
25
+ "url": "https://github.com/jdutton/vibe-agent-toolkit.git"
26
+ },
27
+ "bugs": {
28
+ "url": "https://github.com/jdutton/vibe-agent-toolkit/issues"
29
+ },
30
+ "homepage": "https://github.com/jdutton/vibe-agent-toolkit#readme",
31
+ "dependencies": {
32
+ "@vibe-agent-toolkit/cli": "0.1.0-rc.10"
33
+ },
34
+ "publishConfig": {
35
+ "access": "public"
36
+ }
37
+ }