agentsclimarketplace

Igrantio dcql kyc

Skill L3-iGrant/skills/workflows/igrantio-dcql-kyc

DCQL pattern: KYC request combining two required credential groups in one OpenID4VP verification on the iGrant.io Organisation Wallet Suite - a Photo ID (mso_mdoc) for identity plus proof of address where either a Utility Bill or a Bank Statement (dc+sd-jwt) is acceptable. Know-your-customer onboarding for banks, fintechs, and regulated services with EUDI Wallet (EUDIW) under eIDAS 2.0.From its SKILL.md

Install
npx -y skills add L3-iGrant/skills --skill igrantio-dcql-kyc

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its file declares

Copied from the file, not written here

The file declares its own license as Apache-2.0. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

3.4 KB, 669 tokens by cl100k_base, as published. Nobody here has run it

DCQL: KYC (photo ID + address proof)

Scenario

KYC onboarding needs BOTH: a Photo ID (identity) AND a proof of address, where either a Utility Bill or a Bank Statement satisfies the address requirement. Two required credential_sets in one request.

Before you build: run the integrator intake in igrantio-ows-overview - environment, API key, tenancy, backend host, webhooks, frontend - one question at a time, a recommended default with each.

The DCQL query

{
  "credentials": [
    {
      "id": "photo_id",
      "format": "mso_mdoc",
      "claims": [
        {
          "path": [
            "family_name"
          ]
        }
      ]
    },
    {
      "id": "utility_bill",
      "format": "dc+sd-jwt",
      "claims": [
        {
          "path": [
            "address"
          ]
        }
      ]
    },
    {
      "id": "bank_statement",
      "format": "dc+sd-jwt",
      "claims": [
        {
          "path": [
            "address"
          ]
        }
      ]
    }
  ],
  "credential_sets": [
    {
      "options": [
        "photo_id"
      ],
      "required": true
    },
    {
      "options": [
        [
          "utility_bill"
        ],
        [
          "bank_statement"
        ]
      ],
      "required": true
    }
  ]
}

Run it on OWS

  1. Store as a presentation definition; keep the presentationDefinitionId.
  2. Send the verification request (v3); QR or DC API.
  3. On presentation_acked + verified === true: the presentation carries TWO credentials - map each via presentationSubmission, cross-check the name on the Photo ID against the address document holder.

Adjust for your deployment

  • Add the identity claims KYC actually needs to photo_id (given_name, birth_date, document_number, portrait) - the example discloses only family_name.
  • Add meta (doctype_value / vct_values) pinned to your issuers' types, and trusted_authorities for regulated onboarding.
  • Extend the address group's options with other accepted evidence (rental agreement, bank letter).

Cross-references

  • igrantio-dcql-student-pass - the same two-group pattern plus an OPTIONAL third group.
  • igrantio-dcql-credential-sets - single-group alternatives.

Source of truth

This workflow mirrors https://docs.igrant.io/docs/dcql-2-4-4-kyc-request-photo-id-address-proof/ (query detailed in https://docs.igrant.io/concepts/eudi-wallet-dcql-openid4vp-business-wallet-payments/, §2.4.4). Before implementing, fetch the doc page; if it disagrees with this skill, the documentation wins - follow it and report the drift so the skill can be updated.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.