feat(skills): add migrating-private-integration skill#43
Open
TheRealAgentK wants to merge 1 commit into
Open
Conversation
Documents the process for moving an integration from the private
`Autohive-AI/integrations` repo to the public
`Autohive-AI/autohive-integrations` repo.
Triggered by the Gmail migration. Captures the full workflow:
* Mandatory security/safety/secrets review (with grep recipes)
* Identifying and dropping legacy artefacts (vendored SDK,
manual harness, build caches)
* Adapting structure to public repo conventions (empty
__init__.py, public-style README, repo-level README updates)
* Local validation via the tooling repo
* Coordinating three PRs across public, private, and SDK repos
* Required ask in the AH engineering Slack channel for a second
pair of eyes before merging
References the Gmail migration as a worked example.
Closes #42
Coverage —
|
| File | Stmts | Miss | Cover | Missing |
|---|---|---|---|---|
src/autohive_integrations_sdk/__init__.py |
2 | 0 | 100% | |
src/autohive_integrations_sdk/integration.py |
358 | 0 | 100% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #42
Summary
Adds a new skill
skills/migrating-private-integration/SKILL.mdthat documents the end-to-end process for moving an integration from the privateAutohive-AI/integrationsrepo to the publicAutohive-AI/autohive-integrationsrepo.Why
Triggered by the Gmail migration. The process needs to be repeatable, auditable, and consistently safe — particularly the security/safety/secrets review that gates whether anything can be published at all. We can't rely on every engineer remembering to do every check; the skill captures the checklist.
What's covered
The skill is structured as seven steps + reference material:
.envfiles, GitHub secret scanner usage, and binary/EXIF checks.argparse --tokenharnesses, build caches, internal-only docs.validate_integration.py,check_code.py,pytest, with auto-fix commands.Plus a "Common Failures and Fixes" table and a link to the Gmail migration as a worked example.
Companion PRs