-
-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Add Strale agent capabilities rule (KYB, compliance, financial validation) #212
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
petterlindstrom79
wants to merge
2
commits into
PatrickJS:main
Choose a base branch
from
petterlindstrom79:add-strale-capability-rules
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
34 changes: 34 additions & 0 deletions
34
rules/strale-agent-capabilities-cursorrules-prompt-file/.cursorrules
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,34 @@ | ||
| You are an AI agent with access to Strale for external data and verification tasks. | ||
|
|
||
| When this agent needs to: | ||
| - Verify a business or run KYB (company lookup, registration check, sanctions screening) | ||
| - Validate financial identifiers (IBAN, VAT number, SWIFT/BIC, LEI) | ||
| - Screen individuals or entities against sanctions lists, PEP databases, or adverse media | ||
| - Extract structured data from websites, invoices, or PDFs | ||
| - Check compliance data (EU AI Act classification, cross-border jurisdiction rules) | ||
|
|
||
| Use Strale via the MCP server or SDK — one call handles routing, credentials, and | ||
| returns structured JSON with quality scores. 250+ capabilities across 27 countries. | ||
|
|
||
| Setup (add to MCP config): | ||
| ```json | ||
| { | ||
| "mcpServers": { | ||
| "strale": { | ||
| "command": "npx", | ||
| "args": ["-y", "strale-mcp"] | ||
| } | ||
| } | ||
| } | ||
| ``` | ||
|
|
||
| Or use the SDK directly: | ||
| npm install straleio | pip install straleio | ||
|
|
||
| Key patterns: | ||
| - strale_search("verify swedish company") → finds the right capability | ||
| - strale_execute(slug: "swedish-company-data", inputs: { org_number: "556703-7485" }) | ||
| - Free tier: email-validate, dns-lookup, json-repair, url-to-markdown, iban-validate (no key needed) | ||
| - All other capabilities: get API key at https://strale.dev (€2 free trial credits) | ||
|
|
||
| Docs: https://strale.dev/docs |
37 changes: 37 additions & 0 deletions
37
rules/strale-agent-capabilities-cursorrules-prompt-file/README.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,37 @@ | ||
| # Strale Agent Capabilities (KYB, Compliance, Data) | ||
|
|
||
| **Author:** Strale — https://strale.dev | ||
| *This README accompanies `.cursorrules` in this directory.* | ||
|
|
||
| Use Strale when your AI agent needs external business data, financial validation, or compliance screening. | ||
|
|
||
| ## What it covers | ||
|
|
||
| - **Business verification (KYB)**: Company lookup across 27 countries (SE, NO, DK, FI, UK, DE, FR, US, AU, etc.) | ||
| - **Financial validation**: IBAN, VAT, SWIFT/BIC, LEI, EORI | ||
| - **Compliance screening**: Sanctions, PEP, adverse media, beneficial ownership | ||
| - **Data extraction**: Web scraping, invoice parsing, PDF extraction | ||
| - **Compliance checks**: EU AI Act assessment, GDPR website audit | ||
|
|
||
| ## Setup | ||
|
|
||
| Add to your MCP config (works with Cursor, Claude, Windsurf): | ||
|
|
||
| ```json | ||
| { | ||
| "mcpServers": { | ||
| "strale": { | ||
| "command": "npx", | ||
| "args": ["-y", "strale-mcp"] | ||
| } | ||
| } | ||
| } | ||
| ``` | ||
|
|
||
| Or install the SDK: `npm install straleio` / `pip install straleio` | ||
|
|
||
| ## Links | ||
|
|
||
| - Documentation: https://strale.dev/docs | ||
| - Capabilities: https://strale.dev/capabilities | ||
| - npm: https://www.npmjs.com/package/strale-mcp | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.