Help build the best open-source DevOps tool
DeploySense is intentionally rule-driven and contributor-friendly. New rules are small, testable, and immediately useful to real teams.
1
Pick a rule idea
2
Add parser/rule tests
3
Open a focused PR
Rule quickstart
export const myRule: Rule = {
id: "DOCKER_MY_RULE",
title: "Detect something risky",
severity: "medium",
category: "reliability",
check(input) {
return { issues: [] };
}
};