Igrantio dcql kyc
Agent Skills for EUDI Wallet and European Business Wallet integrations: credential issuance (OpenID4VCI), verification (OpenID4VP + DCQL), DC API and consent management on the iGrant.io Organisation Wallet Suite
npx -y skills add L3-iGrant/skills --skill igrantio-dcql-kycAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 22 days oldThe repository was created 22 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- 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 author says it does
Copied from the file, not written here
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.
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, 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
- Store as a presentation definition; keep the
presentationDefinitionId. - Send the verification request (v3); QR or DC API.
- On
presentation_acked+verified === true: the presentation carries TWO credentials - map each viapresentationSubmission, 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 onlyfamily_name. - Add
meta(doctype_value/vct_values) pinned to your issuers' types, andtrusted_authoritiesfor regulated onboarding. - Extend the address group's
optionswith 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.