const SKILL_MD: &str = include_str!("skill.md");
const GUIDE_MD: &str = include_str!("guide.md");
pub fn resource_entries() -> &'static [(
&'static str,
&'static str,
&'static str,
&'static str,
&'static str,
)] {
&[
(
"droidsaw:///skill",
"droidsaw-skill-guide",
"Analyst workflow guide: mental model, goal→tool decision table, common scenarios, mistakes, cost warnings. Read this before starting a new APK analysis.",
"text/markdown",
SKILL_MD,
),
(
"droidsaw:///guide",
"droidsaw-project-guide",
"Output contract, full tool list with return shapes, chaining patterns, anti-patterns, error classes.",
"text/markdown",
GUIDE_MD,
),
]
}