@sisu-ai/tool-extract-urls 3.0.0 → 3.0.2

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 (2) hide show
  1. package/README.md +11 -0
  2. package/package.json +12 -3
package/README.md CHANGED
@@ -1,4 +1,8 @@
1
1
  # @sisu-ai/tool-extract-urls
2
+ [![Tests](https://github.com/finger-gun/sisu/actions/workflows/tests.yml/badge.svg?branch=main)](https://github.com/finger-gun/sisu/actions/workflows/tests.yml)
3
+ [![License](https://img.shields.io/badge/license-Apache--2.0-blue)](https://github.com/finger-gun/sisu/blob/main/LICENSE)
4
+ [![Downloads](https://img.shields.io/npm/dm/%40sisu-ai%2Ftool-extract-urls)](https://www.npmjs.com/package/@sisu-ai/tool-extract-urls)
5
+ [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/finger-gun/sisu/blob/main/CONTRIBUTING.md)
2
6
 
3
7
  Extract unique `http`/`https` URLs from text snippets. Small, deterministic, and zero I/O — great as a first pass before fetching, classifying, or summarizing pages.
4
8
 
@@ -32,3 +36,10 @@ const app = new Agent()
32
36
  ## Notes
33
37
  - The regex targets `http`/`https` URLs and ignores surrounding punctuation where possible.
34
38
  - Prefer pairing with a fetch tool (e.g., `@sisu-ai/tool-web-fetch`) for subsequent content analysis.
39
+
40
+ # Community & Support
41
+ - [Code of Conduct](https://github.com/finger-gun/sisu/blob/main/CODE_OF_CONDUCT.md)
42
+ - [Contributing Guide](https://github.com/finger-gun/sisu/blob/main/CONTRIBUTING.md)
43
+ - [License](https://github.com/finger-gun/sisu/blob/main/LICENSE)
44
+ - [Report a Bug](https://github.com/finger-gun/sisu/issues/new?template=bug_report.md)
45
+ - [Request a Feature](https://github.com/finger-gun/sisu/issues/new?template=feature_request.md)
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@sisu-ai/tool-extract-urls",
3
- "version": "3.0.0",
3
+ "version": "3.0.2",
4
+ "license": "Apache-2.0",
4
5
  "type": "module",
5
6
  "main": "dist/index.js",
6
7
  "types": "dist/index.d.ts",
@@ -14,7 +15,7 @@
14
15
  "zod": "^3.23.8"
15
16
  },
16
17
  "peerDependencies": {
17
- "@sisu-ai/core": "1.0.0"
18
+ "@sisu-ai/core": "1.0.2"
18
19
  },
19
20
  "repository": {
20
21
  "type": "git",
@@ -24,5 +25,13 @@
24
25
  "homepage": "https://github.com/finger-gun/sisu#readme",
25
26
  "bugs": {
26
27
  "url": "https://github.com/finger-gun/sisu/issues"
27
- }
28
+ },
29
+ "keywords": [
30
+ "sisu",
31
+ "ai",
32
+ "ai-agent",
33
+ "agentic",
34
+ "tool",
35
+ "extract-urls"
36
+ ]
28
37
  }