{"id":21392162,"url":"https://github.com/sysdiglabs/agent-kilt","last_synced_at":"2026-03-06T14:01:30.159Z","repository":{"id":208843241,"uuid":"722486011","full_name":"sysdiglabs/agent-kilt","owner":"sysdiglabs","description":"agent-kilt is a project that defines how to inject foreign apps into containers","archived":false,"fork":false,"pushed_at":"2025-07-07T14:11:56.000Z","size":369,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":3,"default_branch":"dev","last_synced_at":"2025-07-13T18:43:33.016Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"falcosecurity/kilt","license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sysdiglabs.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":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2023-11-23T08:55:31.000Z","updated_at":"2025-06-17T14:36:24.000Z","dependencies_parsed_at":null,"dependency_job_id":"d7a9babd-1880-4727-b4f9-71989060eaaa","html_url":"https://github.com/sysdiglabs/agent-kilt","commit_stats":null,"previous_names":["sysdiglabs/agent-kilt"],"tags_count":19,"template":false,"template_full_name":null,"purl":"pkg:github/sysdiglabs/agent-kilt","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sysdiglabs%2Fagent-kilt","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sysdiglabs%2Fagent-kilt/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sysdiglabs%2Fagent-kilt/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sysdiglabs%2Fagent-kilt/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sysdiglabs","download_url":"https://codeload.github.com/sysdiglabs/agent-kilt/tar.gz/refs/heads/dev","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sysdiglabs%2Fagent-kilt/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271746301,"owners_count":24813557,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-23T02:00:09.327Z","response_time":69,"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":[],"created_at":"2024-11-22T13:39:28.329Z","updated_at":"2026-03-06T14:01:30.076Z","avatar_url":"https://github.com/sysdiglabs.png","language":"Go","readme":"# agent-kilt\n\n`agent-kilt` provides a convenient way to add additional software to containers by patching ECS TaskDefinitions.\n\nKilt is a definition on how to include additional software inside containers. It was created to run falco in userspace\nalong other software. It leverages different runtimes to perform modifications to the container\n\n## Definition file\n\nThe kilt definition file contains instructions on how to change a container to run additional software alongside the \noriginal entry point/command. [HOCON](https://github.com/lightbend/config/blob/master/HOCON.md) was chosen as the \nconfiguration format.\n\nThere are 2 phases of patching that the definition file covers, build time and run time. Build time is when container \nis not running yet. Run time is well, you get it.\n\n### Variables\n\n* **original.*** - contains information about the original container. See runtime specific documentation for details.\n    * **original.entry_point** `str`\n    * **original.command** `str`\n* **build.entry_point** `List[str]` - new entry point\n* **build.command** `List[str]` - new command\n* **build.environment_variables** `Dict[str,str]` - will merge environment variables\n* **build.mount** - add a filesystem inside the target container. Implementation depends on runtime.\n    * **build.mount.name** `str` - Mount name\n    * **build.mount.image** `str` - the image that contains the volume of the mount\n    * **build.mount.volumes** `List(str)` - List of paths to be mounted on the target image\n    * **build.mount.entry_point** `List(str)` - The entry point of the image (needed for patching runtimes)\n\n### Example\n```\nbuild {\n    # concatenated arrays\n    entry_point: [\"/falco/bin/launcher\", \"/falco/bin/pdig\"] ${?original.entry_point} ${?original.command} [\"--\"]\n    command: [\"/falco/usr/bin/falco\", \"-u\", \"-c\", \"/falco/falco.yaml\", \"--alternate-lua-dir\", \"/falco/share/lua\"]\n    environment_variables: {\n        \"__CW_LOG_GROUP\": \"FalcoAlerts\"\n    }\n    mount: [\n        {\n            name: \"FalcoDistribution\"\n            image: \"admiral0/falco:latest\"\n            volumes: [\"/falco\"]\n            entry_point: [\"/falco/waitforever\"]\n        }\n    ]\n}\n```\n\n# Release\n\nTo make a new release push a new tag. \n\nIt will trigger the [release](.github/workflows/release.yml) workflow.\n\nFor tags, use [semver](https://semver.org/).\n\nBefore making a new release, check the diff between the previous tag and `dev` branch,\nto spot major changes to make release notes as clear as possible.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsysdiglabs%2Fagent-kilt","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsysdiglabs%2Fagent-kilt","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsysdiglabs%2Fagent-kilt/lists"}