mirror of
https://github.com/profullstack/logicsrc.git
synced 2026-08-13 22:37:29 +00:00
feat(credential-sharing): implement the Credential Sharing OpenSpec (M1-M3)
New @logicsrc/plugin-credential-sharing: a provider-neutral secret-sync engine with env/.env, Doppler, Railway, and GitHub Secrets adapters behind one CredentialProvider contract. - engine: inspect -> diff -> plan -> approve -> sync -> rollback -> audit/export - dry-run is the default for sync; --approve writes; destructive changes gated - fingerprint-based diffs (salted SHA-256); raw values never printed or stored in plans/runs/audit; rollback pre-image kept in a 0600 .logicsrc vault (gitignored) - github-secrets is write-only for values (sealed-box via libsodium), so it cannot be a sync source or value-restoring rollback target - CLI: real `logicsrc credentials <providers|inspect|diff|plan|approve|sync| rollback|audit|export>` (replaces the prior stub) - 4 JSON schemas registered in @logicsrc/validators - flip logicsrc.com/credential-sharing band from coming-soon to available - 37 tests pass; full env->env lifecycle verified; artifacts schema-validate Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
parent
6e7f44612a
commit
cf73fe5af2
30 changed files with 1849 additions and 38 deletions
|
|
@ -50,10 +50,10 @@ const credentialProviders = [
|
|||
];
|
||||
|
||||
const credentialSurfaces = [
|
||||
{ name: "CLI", detail: "`logicsrc credentials` for provider listing, dry-run plans, diffs, approvals, sync, and audit exports." },
|
||||
{ name: "TUI", detail: "Review key diffs, target providers, approval prompts, fingerprints, and failure states without showing raw secrets." },
|
||||
{ name: "SDKs", detail: "Rust, Bun, Node, Python, and curl APIs share the same credential source, target, policy, and audit objects." },
|
||||
{ name: "PWA", detail: "Provider connection health, dry-run previews, approval history, and redacted sync evidence." }
|
||||
{ name: "CLI", detail: "`logicsrc credentials` ships provider listing, dry-run plans, diffs, approvals, sync, rollback, and audit exports today." },
|
||||
{ name: "SDK", detail: "`createCredentialEngine()` in `@logicsrc/plugin-credential-sharing` exposes the same source, target, policy, and audit objects for Node/TS." },
|
||||
{ name: "TUI", detail: "A Credential Sharing panel reviews key diffs, providers, approval prompts, fingerprints, and failure states without showing raw secrets." },
|
||||
{ name: "PWA", detail: "Planned: provider connection health, dry-run previews, approval history, and redacted sync evidence." }
|
||||
];
|
||||
|
||||
const hireUsWork = [
|
||||
|
|
@ -248,10 +248,10 @@ npm --workspace @logicsrc/cli run dev -- \\
|
|||
</div>
|
||||
</section>
|
||||
|
||||
<section id="credential-sharing" class="band coming-soon credentials">
|
||||
<section id="credential-sharing" class="band credentials">
|
||||
<div class="section-head">
|
||||
<h2>Credential Sharing</h2>
|
||||
<p>A coming-soon LogicSRC OpenSpec for replacing closed credential-sharing workflows with auditable, provider-neutral secret sync.</p>
|
||||
<p>An available LogicSRC OpenSpec for replacing closed credential-sharing workflows with auditable, provider-neutral secret sync. Shipped in <code>@logicsrc/plugin-credential-sharing</code>.</p>
|
||||
</div>
|
||||
<div class="soon-layout">
|
||||
<article class="soon-lead">
|
||||
|
|
@ -259,8 +259,14 @@ npm --workspace @logicsrc/cli run dev -- \\
|
|||
<h3>Open replacement architecture for secrets</h3>
|
||||
<p>LogicSRC defines the credential source, target, diff, approval, sync, rollback, and audit objects. External tools can consume the contract, but LogicSRC remains the open standards CLI and does not call out to proprietary product commands.</p>
|
||||
<pre><code>logicsrc credentials providers
|
||||
logicsrc credentials plan --from env --to railway
|
||||
logicsrc credentials plan --from doppler --to github-secrets</code></pre>
|
||||
logicsrc credentials diff --from env --from-path .env --to railway \\
|
||||
--to-project <projectId> --to-config <environmentId>
|
||||
logicsrc credentials plan --from env --from-path .env --to doppler \\
|
||||
--to-project <project> --to-config <config>
|
||||
logicsrc credentials sync --plan <planId> # dry-run, no writes
|
||||
logicsrc credentials sync --plan <planId> --approve # writes to the target
|
||||
logicsrc credentials audit --run <runId> --format markdown
|
||||
logicsrc credentials rollback --run <runId></code></pre>
|
||||
</article>
|
||||
<div class="soon-grid">
|
||||
${credentialProviders.map((item) => `
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue