Agent skill
enterprise-spring-xml
Dasel v3 selectors for Spring bean factory XML — use when querying any Spring ApplicationContext XML for bean discovery, dependency wiring, JMS destination mapping, property injection extraction, or cross-bean reference tracing. Load this skill before writing dasel selectors against Spring bean XML files (applicationContext.xml, *_beans.xml, spring-*.xml).
Install this agent skill to your Project
npx add-skill https://github.com/Jamie-BitFlight/claude_skills/tree/main/plugins/dasel/skills/enterprise-spring-xml
SKILL.md
Spring Bean Factory XML — Dasel v3 Query Patterns
<when_to_use>
Load this skill when querying any Spring bean XML file — applicationContext.xml, *_beans.xml, spring-context.xml, or any Spring ApplicationContext XML — for bean discovery, dependency analysis, JMS wiring, property injection auditing, or cross-bean reference tracing.
</when_to_use>
Dasel v3 selector patterns for Spring bean factory XML. Always pass -i xml explicitly.
Attribute prefix rule: Dasel friendly mode (default) prefixes XML attributes with -. The id attribute is -id, class is -class. Text content is #text.
Bean Discovery
# All bean IDs
dasel -f chaosrouter_beans.xml -i xml 'beans.bean.filter(has("-id")).map("-id")'
# All bean classes
dasel -f chaosrouter_beans.xml -i xml 'beans.bean.filter(has("-class")).map("-class")'
# Map -class across every bean (includes beans without -id)
dasel -f chaosrouter_beans.xml -i xml 'beans.bean.map("-class")'
Class Pattern Matching
Filter beans by class name via regex on -class.
# Beans whose class contains JmsTemplate
dasel -f chaosrouter_beans.xml -i xml 'beans.bean.filter(-class ~ ".*JmsTemplate.*").map("-id")'
# Count beans matching a class pattern
dasel -f beans.xml -i xml 'len(beans.bean.filter(-class ~ ".*Jms.*"))'
Dependency Wiring Analysis
Find beans referencing other beans via the -ref attribute on property child elements.
Pattern: parentCollection.filter(childElement.filter(condition).len($this) > 0) — filters the parent by testing whether a matching child exists (length > 0).
# Beans that reference a specific bean ID via ref attribute
dasel -f chaosrouter_beans.xml -i xml 'beans.bean.filter(property.filter(-ref == "targetBeanId").len($this) > 0).map("-id")'
JMS Destination Mapping
Find which beans consume which JMS destinations via property child elements.
# Beans wired to a specific destination property
dasel -f integrationpoint_beans.xml -i xml 'beans.bean.filter(property.filter(-name == "destination").len($this) > 0).map("-id")'
Property Injection Extraction
Extract externalized ${...} placeholder values from bean definitions.
# All property values using ${...} placeholders
dasel -f storage_beans.xml -i xml 'beans.bean.property.filter(-value ~ ".*\\$\\{.*\\}.*").map("-value")'
Attribute and Text Content Access
# <bean id="myBean" class="com.example.Foo">some text</bean>
dasel -f beans.xml -i xml 'beans.bean[0].-id' # myBean
dasel -f beans.xml -i xml 'beans.bean[0].-class' # com.example.Foo
dasel -f beans.xml -i xml 'beans.bean[0].#text' # some text
# Discover all keys (attributes + child elements) on first bean
dasel -f beans.xml -i xml 'beans.bean[0].keys($this)'
Namespace Handling
Friendly mode strips namespace prefixes from element names — works for most Spring queries.
When namespace prefixes cause selector failures (element not found despite existing), switch to structured mode:
dasel -f spring-context.xml -i xml --read-flag xml-mode=structured 'beans.bean[0]'
Cross-File Analysis
Write intermediate results to /tmp/ — never to the source tree.
# Extract bean IDs from multiple files, compare
dasel -f chaosrouter_beans.xml -i xml 'beans.bean.filter(has("-id")).map("-id")' > /tmp/chaosrouter_beans.txt
dasel -f integrationpoint_beans.xml -i xml 'beans.bean.filter(has("-id")).map("-id")' > /tmp/integration_beans.txt
diff /tmp/chaosrouter_beans.txt /tmp/integration_beans.txt
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
ccc
This skill should be used when code search is needed (whether explicitly requested or as part of completing a task), when indexing the codebase after changes, or when the user asks about ccc, cocoindex-code, or the codebase index. Trigger phrases include 'search the codebase', 'find code related to', 'update the index', 'ccc', 'cocoindex-code'.
agent-browser
Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to "open a website", "fill out a form", "click a button", "take a screenshot", "scrape data from a page", "test this web app", "login to a site", "automate browser actions", or any task requiring programmatic web interaction.
delegate
Quick delegation template for sub-agent prompts. Use when assigning work to a sub-agent, before invoking the Agent tool, or when preparing prompts for specialized agents. Provides the WHERE-WHAT-WHY framework. For comprehensive delegation guidance, activate the agent-orchestration how-to-delegate skill.
swarm-spawning
Spawn agents and teammates in Claude Code swarms. Use when choosing between subagents vs teammates, selecting agent types (Explore, Plan, general-purpose, plugin agents), configuring spawn backends (in-process, tmux, iterm2), or setting environment variables for spawned agents.
knowledge-explorer
Manage the research/ knowledge base (KB) of tool and library research entries. Use when browsing KB topics, adding new research entries, updating existing entries with dated revisions, fetching GitHub repo metadata into a draft KB entry, or migrating old-format entries to skill-spec frontmatter. Triggers on tasks like "what do we have on X", "add this to the KB", "update the KB entry for Y", "fetch github info for owner/repo", or "migrate old entries".
design-anti-patterns
Enforce anti-AI UI design rules based on the Uncodixfy methodology. Use when generating HTML, CSS, React, Vue, Svelte, or any frontend UI code. Prevents "Codex UI" — the generic AI aesthetic of soft gradients, floating panels, oversized rounded corners, glassmorphism, hero sections in dashboards, and decorative copy. Applies constraints from Linear/Raycast/Stripe/GitHub design philosophy: functional, honest, human-designed interfaces. Triggers on: UI generation, dashboard building, frontend component creation, CSS styling, landing page design, or any task producing visual interface code.
Didn't find tool you were looking for?