{"id":50879028,"url":"https://github.com/zavora-ai/skill-artifact-lifecycle","last_synced_at":"2026-06-15T12:03:38.160Z","repository":{"id":360131977,"uuid":"1248827115","full_name":"zavora-ai/skill-artifact-lifecycle","owner":"zavora-ai","description":"Artifact lifecycle skill — versioned storage, provenance, derivation, export","archived":false,"fork":false,"pushed_at":"2026-05-25T05:09:21.000Z","size":2,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-25T07:11:43.091Z","etag":null,"topics":["adk-rust","agent-skills","artifacts","claude-skills","enterprise","mcp","provenance","versioning"],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zavora-ai.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-25T04:55:06.000Z","updated_at":"2026-05-25T05:09:25.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/zavora-ai/skill-artifact-lifecycle","commit_stats":null,"previous_names":["zavora-ai/skill-artifact-lifecycle"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/zavora-ai/skill-artifact-lifecycle","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zavora-ai%2Fskill-artifact-lifecycle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zavora-ai%2Fskill-artifact-lifecycle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zavora-ai%2Fskill-artifact-lifecycle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zavora-ai%2Fskill-artifact-lifecycle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zavora-ai","download_url":"https://codeload.github.com/zavora-ai/skill-artifact-lifecycle/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zavora-ai%2Fskill-artifact-lifecycle/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34361404,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-15T02:00:07.085Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["adk-rust","agent-skills","artifacts","claude-skills","enterprise","mcp","provenance","versioning"],"created_at":"2026-06-15T12:03:35.089Z","updated_at":"2026-06-15T12:03:38.152Z","avatar_url":"https://github.com/zavora-ai.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Artifact Lifecycle Skill\n\n\u003e Governed artifact management — versioned storage, provenance tracking, integrity verification, derivation chains, and export packaging for build outputs and documents.\n\n[![Skill Standard](https://img.shields.io/badge/standard-agentskills.io-blue)](https://agentskills.io)\n[![ADK-Rust Enterprise](https://img.shields.io/badge/ADK--Rust-Enterprise-purple.svg)](https://enterprise.adk-rust.com)\n[![License](https://img.shields.io/badge/license-Apache--2.0-orange)](LICENSE)\n\n## What This Skill Does\n\n| Workflow | Calls | Achieves |\n|----------|-------|----------|\n| Store | 2 | Write + create version with provenance |\n| Verify | 1 | SHA-256 integrity check |\n| Derive | 2 | Transform + link to source |\n| Export | 1 | Package for distribution |\n\n### Without this skill:\n- Artifacts overwritten without versioning\n- No provenance (who built this? from what commit?)\n- Integrity unverified (could be tampered)\n- No derivation chain (can't trace lineage)\n\n### With this skill:\n- Every artifact versioned (never overwrite)\n- Full provenance (source, pipeline, commit, timestamp)\n- Integrity verified via SHA-256 before use\n- Derivation chains link outputs to inputs\n\n## Installation\n\n```bash\ngit clone https://github.com/zavora-ai/skill-artifact-lifecycle.git \\\n  ~/.skills/skills/artifact-lifecycle\n```\n\n## Requirements\n\n**Required:** `mcp-artifact-store` (10 tools)\n**Cross-MCP:** mcp-cicd (store build outputs), mcp-environment (deploy from store)\n\n## Example\n\n**User:** \"Verify the billing service artifact before deploying\"\n\n**Result:**\n```\nArtifact: billing-v2.3.1.tar.gz\nProvenance: pipeline run_200, commit abc123\nIntegrity: SHA-256 verified ✅ (matches stored hash)\nSafe to deploy.\n```\n\n## Scripts\n\n### `verify_integrity.py`\n```bash\npython scripts/verify_integrity.py '{\"stored_hash\": \"abc123...\", \"content\": \"file contents\"}'\n# → {\"valid\": true, \"match\": true}\n```\n\n## Contributors\n\n| [\u003cimg src=\"https://github.com/jkmaina.png\" width=\"80px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eJames Karanja Maina\u003c/b\u003e\u003c/sub\u003e](https://github.com/jkmaina) |\n|:---:|\n\n## License\n\nApache-2.0 — Part of [ADK-Rust Enterprise](https://enterprise.adk-rust.com). Built with ❤️ by [Zavora AI](https://zavora.ai)\n\n## Success Criteria\n\n| Metric | Target |\n|--------|--------|\n| Trigger rate | 90% on relevant queries |\n| Compliance | 100% governed actions evaluated |\n| Audit trail | Every action logged with actor + reason |\n\n## Related Skills\n\nSee the full [ADK-Rust Enterprise Skills Registry](https://github.com/zavora-ai) for all 35 skills.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzavora-ai%2Fskill-artifact-lifecycle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzavora-ai%2Fskill-artifact-lifecycle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzavora-ai%2Fskill-artifact-lifecycle/lists"}