Running the external Docker Compose executes third-party images and services absent from the audit evidence
Source references: 4The Skill tells the user to check out a release tag from an external GitHub repository and run docker compose up. The supplied material contains no repository source, Compose definition, image digest, or build provenance, so the executed code, mounts, and exposed services cannot be checked. A release tag is not an immutable commit or image digest.
A replaced, compromised, or overprivileged repository or image could read mounted files, access advertising API credentials, alter persistent data, or expose network ports within its Docker permissions.
The skill does direct the user to check out an external repository at a release tag and run `docker compose up`, which executes whatever the Compose configuration references or builds. The repository, Compose file, images, mounts, and ports are absent, so their permissions and concrete risk cannot be determined. The text also tells the user to inspect declared images and ports first, making this a visible installation step rather than concealed execution; however, a release tag alone does not establish immutable images.
This assessment concerns the code and conditions shown, not proof that harm has occurred.Get the repository from <https://github.com/autonnel/autonnel> (Apache-2.0), checkout a release tag, and read its `docker-compose.yml` - it declares the images andports that will run. From that checkout:```bashdocker compose up# open http://localhost:4321, complete /setup, then Settings → Ad platforms```Show 3 other places
|---|---|---|| Facebook | Conversions API | Pixel ID + access token || TikTok | Events API | Pixel code + access token || Google Ads | Click conversion import (`gclid`-keyed) | Conversion action + developer/OAuth credentials || Microsoft Bing | Conversions API | UET tag ID + CAPI token |[Autonnel](https://github.com/autonnel/autonnel) (Apache-2.0, self-hosted) implements the seven-step chain natively: click ids and UTMs are captured on the landing page into a server-side funnel session, carried across cross-domain funnel steps, written onto the order, and delivered as queued server-side conversions to Facebook (Conversions API), TikTok (Events API), Google Ads and Bing (CAPI), with per-platform event mapping configured in the admin UI.```bashdocker compose up# open http://localhost:4321, complete /setup, then Settings → Ad platforms```