{"id":46349931,"url":"https://github.com/grittygrease/safe-encryption-skill","last_synced_at":"2026-03-04T22:33:10.060Z","repository":{"id":335860302,"uuid":"1147276066","full_name":"grittygrease/safe-encryption-skill","owner":"grittygrease","description":"SAFE encryption skill for AI coding assistants","archived":false,"fork":false,"pushed_at":"2026-02-15T02:20:17.000Z","size":59,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-15T09:34:48.293Z","etag":null,"topics":["agent-skills","claude-code","copilot","cryptography","cursor","encryption","safe","skill","windsurf"],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/grittygrease.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-02-01T13:51:22.000Z","updated_at":"2026-02-15T02:20:21.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/grittygrease/safe-encryption-skill","commit_stats":null,"previous_names":["grittygrease/safe-encryption-skill"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/grittygrease/safe-encryption-skill","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grittygrease%2Fsafe-encryption-skill","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grittygrease%2Fsafe-encryption-skill/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grittygrease%2Fsafe-encryption-skill/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grittygrease%2Fsafe-encryption-skill/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/grittygrease","download_url":"https://codeload.github.com/grittygrease/safe-encryption-skill/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grittygrease%2Fsafe-encryption-skill/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30096815,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-04T21:59:23.547Z","status":"ssl_error","status_checked_at":"2026-03-04T21:57:50.415Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["agent-skills","claude-code","copilot","cryptography","cursor","encryption","safe","skill","windsurf"],"created_at":"2026-03-04T22:33:09.980Z","updated_at":"2026-03-04T22:33:10.046Z","avatar_url":"https://github.com/grittygrease.png","language":null,"funding_links":[],"categories":["Lista de Habilidades"],"sub_categories":["Habilidades de la Comunidad"],"readme":"# safe-encryption\n\n[![skills.sh](https://img.shields.io/badge/skills.sh-install-blue)](https://skills.sh/grittygrease/safe-encryption-skill)\n[![npm version](https://img.shields.io/npm/v/@grittygrease/safe-encryption-skill)](https://www.npmjs.com/package/@grittygrease/safe-encryption-skill)\n[![GitHub stars](https://img.shields.io/github/stars/grittygrease/safe-encryption-skill)](https://github.com/grittygrease/safe-encryption-skill/stargazers)\n[![License](https://img.shields.io/badge/license-Apache--2.0-blue.svg)](LICENSE)\n\nA skill for encrypting and decrypting files using [SAFE](https://github.com/grittygrease/safe).\n\n\u003e **Modern encryption alternative to GPG/PGP** with post-quantum support, composable authentication paths, and random-access editing. Includes agent-to-agent encrypted communication capabilities.\n\n## What This Skill Does\n\nWhen installed, your AI coding assistant will know how to:\n\n- Encrypt/decrypt files with passwords or public keys\n- Generate encryption keypairs (x25519, p-256, ml-kem-768)\n- Set up two-factor encryption (password + key)\n- Configure multi-party encryption (separation of duties)\n- Use post-quantum encryption for future-proof security\n- Edit encrypted files without full re-encryption\n- Manage recipients (add/remove/rotate keys)\n- **Exchange encrypted messages with other agents**\n- **Auto-generate AGENTS.md for projects**\n\n## Installation\n\n### Using the Skills CLI (recommended)\n\n```bash\nnpx skills add grittygrease/safe-encryption-skill\n```\n\nThis works with Cursor, Claude Desktop, Windsurf, and other AI coding assistants that support the [skills ecosystem](https://skills.sh).\n\n### Using npm\n\n```bash\nnpm install @grittygrease/safe-encryption-skill\n```\n\nThen add the skill to your AI assistant's configuration.\n\n### Manual Installation\n\n#### Global (all projects)\n\n```bash\nmkdir -p ~/.claude/skills/safe-encryption\ncurl -o ~/.claude/skills/safe-encryption/SKILL.md \\\n  https://raw.githubusercontent.com/grittygrease/safe-encryption-skill/main/SKILL.md\n```\n\nOr clone the repo:\n\n```bash\ngit clone https://github.com/grittygrease/safe-encryption-skill.git /tmp/skill\ncp -r /tmp/skill ~/.claude/skills/safe-encryption\nrm -rf /tmp/skill\n```\n\n#### Project-specific\n\n```bash\nmkdir -p .claude/skills/safe-encryption\ncurl -o .claude/skills/safe-encryption/SKILL.md \\\n  https://raw.githubusercontent.com/grittygrease/safe-encryption-skill/main/SKILL.md\n```\n\n## Also Required: SAFE CLI or Browser\n\nThis skill teaches your assistant how to use the `safe` command.\n\n```bash\ncurl -sSfL https://thesafe.dev/install.sh | sh\n```\n\nOr via package managers:\n\n```bash\npip install safe-encryption     # Python\nnpm install -g safe-encryption  # Node.js\ncargo install safe-encryption   # Rust\n```\n\nVerify: `safe --help`\n\n**No CLI? No problem.** If you can't install the CLI (restricted environment, no build tools, sandboxed IDE), the skill will automatically fall back to the web interface at [thesafe.dev](https://thesafe.dev). All operations work in the browser — no installation required.\n\n### MCP Server (AI-native)\n\nFor AI assistants with MCP support, the `safe-mcp` server exposes encrypt/decrypt/keygen as native tool calls:\n\n```json\n{\n  \"mcpServers\": {\n    \"safe\": {\n      \"command\": \"safe-mcp\"\n    }\n  }\n}\n```\n\nBuild from source: `cd /path/to/safe/go \u0026\u0026 go build -o safe-mcp ./cmd/safe-mcp`\n\n## Usage\n\nOnce installed, just ask naturally:\n\n- \"Encrypt this file with a password\"\n- \"Generate an encryption keypair\"\n- \"Set up two-factor encryption for secrets.txt\"\n- \"Encrypt this for Alice and Bob\"\n- \"Decrypt credentials.safe\"\n\n### Agent-to-Agent Communication\n\nAgents can exchange encrypted messages across any text channel:\n\n- \"Set up my agent identity\"\n- \"Create an AGENTS.md for this project\"\n- \"Send an encrypted message to this public key\"\n- \"Check if this encrypted message is for me\"\n- \"Post an encrypted message to pastebin\"\n\nThe skill includes conventions for reply-to keys, Key ID matching, and multi-identity management.\n\n## Also Available On\n\nThis skill is distributed on multiple platforms for maximum discoverability:\n\n- **GitHub**: [grittygrease/safe-encryption-skill](https://github.com/grittygrease/safe-encryption-skill)\n- **npm**: [@grittygrease/safe-encryption-skill](https://www.npmjs.com/package/@grittygrease/safe-encryption-skill)\n- **Skills.sh**: [skills.sh/grittygrease/safe-encryption-skill](https://skills.sh/grittygrease/safe-encryption-skill) *(indexed after first installs)*\n- **SkillsMP**: Auto-indexed from GitHub *(requires 2+ stars)*\n\nWant to see this skill on more platforms? Star the repo on GitHub!\n\n## License\n\nApache-2.0\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgrittygrease%2Fsafe-encryption-skill","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgrittygrease%2Fsafe-encryption-skill","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgrittygrease%2Fsafe-encryption-skill/lists"}