Skip to content
Skillv1.0.0

find-matching-tenders

Find open AU/NZ government tenders matching what a company does, ranked by fit with why and gap analysis. Use when the user asks to find tenders, bid opportunities, government contracts, or RFPs for t

by sickn33(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from sickn33/agentic-awesome-skills (skills/find-matching-tenders/SKILL.md). Install upstream with npx skills add sickn33/agentic-awesome-skills --skill find-matching-tenders. Copyright stays with the author (Apache-2.0).

Find Matching Tenders

Search live AU/NZ government tenders, rank them against what a company actually does (read from its website), and explain why each opportunity is relevant — including the capability gaps to prepare evidence for. Tender search is free forever on the Stipple API; no API key or signup needed.

When to use

  • Business development: "find tenders we could bid on"
  • Market research: "what government work is out there for cybersecurity firms in NSW?"
  • Bid pipeline maintenance: "check for new construction tenders this week"

Instructions

  1. Get the company profile. Ask for the company's website URL. If the user provides a description instead, skip resolution and use their description directly as capability context.

  2. Resolve the company (optional but improves matching):

    curl -X POST https://www.stipple.sh/v1/companies/resolve \
      -H "Content-Type: application/json" \
      -d '{"query": "https://your-company.com"}'

    Returns the company's registered name, ABN, jurisdiction, and status.

  3. Search open tenders (free, no key):

    curl "https://www.stipple.sh/v1/tenders?q=construction&jurisdiction=AU&limit=10"

    Filters: q (keyword), jurisdiction (AU, AU-NSW, AU-VIC, NZ, ...), limit, offset.

  4. Rank against the company (optional, uses free weekly allowance):

    curl -X POST https://www.stipple.sh/v1/tenders/match \
      -H "Content-Type: application/json" \
      -d '{"url": "https://your-company.com", "jurisdiction": "AU", "limit": 5}'

    Returns ranked matches with why[] (why it fits) and gaps[] (capability evidence to prepare).

  5. Check data provenance if results seem thin (free):

    curl "https://www.stipple.sh/v1/tenders/sources"

    Shows which government feeds are indexed and their freshness — explains why a search can be empty.

  6. Report honestly. Match scores are fit signals, not win probabilities. Present gaps[] as "prepare evidence for this", not disqualification.

Output format

Found 403 open tenders matching "construction" (AU/NZ)

#1 [AU-NSW] Digital platform modernisation services
    buyer:  NSW Department of ...
    why:    matches 'cloud migration', 'API integration' from your services
    gap:    no evidence found for 'ICT security assessment'
    closes: 2026-09-15
    https://...

#2 [NZ] ...

Limitations and Safety

  • The hosted service receives the search terms and, for matching, the supplied company URL or description. Obtain approval before sending private capability or client information and do not include secrets or non-public bid strategy.
  • Feed coverage and freshness can be incomplete. Confirm eligibility, scope, amendments, deadlines, and submission instructions on the issuing authority's primary tender page before investing time or submitting a bid.
  • Match scores and gap analysis are triage signals, not procurement advice, an eligibility ruling, or a probability of winning.

Notes

  • Tender search and source listing are free forever — no key, no credits
  • Matching costs a small number of credits on the free weekly allowance
  • For ongoing monitoring, pair with a cron job that re-runs step 3 daily and diffs results
  • Data sources: NZ GETS, NSW eTendering, VendorPanel, and other government feeds

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/sickn33-agentic-awesome-skills-find-matching-tenders/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

sickn33-agentic-awesome-skills-find-matching-tenders.ocm.jsonjson
{
  "ocm": "1",
  "id": "sickn33-agentic-awesome-skills-find-matching-tenders",
  "kind": "skill",
  "name": "find-matching-tenders",
  "description": "Find open AU/NZ government tenders matching what a company does, ranked by fit with why and gap analysis. Use when the user asks to find tenders, bid opportunities, government contracts, or RFPs for their business (or a client's).",
  "publisher": "sickn33",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "general"
    ],
    "tags": [
      "skill-md",
      "document-verification",
      "fact-checking",
      "stipple",
      "authenticity",
      "skills-sh"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "Find open AU/NZ government tenders matching what a company does, ranked by fit with why and gap analysis. Use when the user asks to find tenders, bid opportunities, government contracts, or RFPs for their business (or a client's)."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/sickn33/agentic-awesome-skills",
      "path": "skills/find-matching-tenders/SKILL.md",
      "ref": "HEAD",
      "url": "https://github.com/sickn33/agentic-awesome-skills/blob/HEAD/skills/find-matching-tenders/SKILL.md",
      "key": "sickn33/agentic-awesome-skills/skills/find-matching-tenders/SKILL.md"
    },
    "license": "Apache-2.0"
  },
  "instructions": "# Find Matching Tenders\n\nSearch live AU/NZ government tenders, rank them against what a company actually does (read from its website), and explain why each opportunity is relevant — including the capability gaps to prepare evidence for. Tender search is free forever on the Stipple API; no API key or signup needed.\n\n## When to use\n\n- Business development: \"find tenders we could bid on\"\n- Market research: \"what government work is out there for cybersecurity firms in NSW?\"\n- Bid pipeline maintenance: \"check for new construction tenders this week\"\n\n## Instructions\n\n1. **Get the company profile.** ",
  "cost": {
    "context_tokens": 840
  }
}

Fetch it by URL: GET /api/v1/registry/sickn33-agentic-awesome-skills-find-matching-tenders/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.