Current situation:
- API keys actually start with
plln_pk_ (publishable) and plln_sk_ (secret)
- Documentation incorrectly states they start with
pk_ and sk_
Issues:
- AGENTS.md shows examples with
pk_ and sk_ prefixes
- Actual implementation uses
plln_pk_ and plln_sk_ prefixes
- Confusing for developers following the docs
Options to consider:
- Update docs to reflect actual
plln_pk_/plln_sk_ format
- Consider shortening to
pln_pk_/pln_sk_ (simpler, follows Stripe pattern)
- Move the type indicator (
pk_/sk_) before the vendor prefix for clarity
Current code:
src/client/routes/index.tsx:93 - Uses plln_pk and plln_sk as prefixes
@PrimeevolutionZ
Current situation:
plln_pk_(publishable) andplln_sk_(secret)pk_andsk_Issues:
pk_andsk_prefixesplln_pk_andplln_sk_prefixesOptions to consider:
plln_pk_/plln_sk_formatpln_pk_/pln_sk_(simpler, follows Stripe pattern)pk_/sk_) before the vendor prefix for clarityCurrent code:
src/client/routes/index.tsx:93- Usesplln_pkandplln_skas prefixes@PrimeevolutionZ