You remember why you started. Let's get you back there.

Every behavioral health practice reaches a moment where operations take over. Suddenly you're managing crises instead of leading vision. Somewhere underneath all of it, the reason you started is still there.We help you unbury it. By fixing the systems that are consuming your
time, we give you back the hours to do what you built this for: support your clients, lead your team, and grow on your terms.

Who we support

You have real clinical work. You're tired of operations.

Who We Support - Chrysalis Consulting
1
Solo clinicians
Building foundations. You're growing but don't know where systems start.
2
Medium practices
1–5 clinicians hitting limits. Systems exist but they're breaking your team.
3
Established practices
10+ staff but losing margin. Operations are leaking revenue and burning people out.
function showContent(element) { const allContent = document.querySelectorAll('.timeline-content'); allContent.forEach(content => content.classList.remove('active')); const content = element.parentElement.querySelector('.timeline-content'); if (content) { content.classList.add('active'); } }

How we operate

Stop managing systems. Start leading your practice.

Learn your practice.

Diagnose with rigor.

Built to last.

Stay involved.

We don't diagnose from assumptions. We interview, listen, understand your workflows—clinical and operational. We know your practice before we recommend anything.

We find what's actually broken, not what we think should be fixed. Systems are interconnected. We map the issue tree, rank by impact, show you the real problems.

We create solutions designed for longevity. Creative, sustainable, grounded in how your practice actually works. Built for scale. Built to endure.

We implement, train, measure, and refine. We're accountable for outcomes. You're not figuring it out alone after we leave.

Our expertise

Our Expertise - Chrysalis Consulting
01
Operational systems
We optimize workflow processes and improve operations across your practice. From intake to billing, scheduling to documentation. Every system is designed to reduce friction and enable growth.
  • Workflow optimization
  • Process design & redesign
  • SOP documentation
  • Automation & efficiency
02
Team building & development
We help you hire quality talent, train them effectively, and build the organizational structure that retains great people. Clear processes. Strong onboarding. Sustainable growth.
  • Talent hiring & selection
  • Training & onboarding
  • Role clarity & ownership
  • Change management
03
Strategic scaling
We build solutions designed to last. Creative, sustainable approaches grounded in how your practice actually works. Built for growth. Built to endure as you scale.
  • Strategic problem-solving
  • Sustainable solutions
  • Growth planning
  • Long-term partnerships

Our Motto

Together, we can build systems that serve.

Services - Chrysalis Consulting
How we operate

Every engagement is grounded in four operating principles that guide our approach. We learn your practice before we prescribe anything. We diagnose with rigor, mapping interconnected systems and ranking problems by impact. We build solutions designed to last—creative, sustainable, grounded in how your practice actually works. And we stay involved, training your team and refining systems until they work in your world. These principles are reflected in every service offering below.

This is how we work. This is what you can expect.
Diagnostic
Quick Audit
2 weeks
Fast assessment. Understand what's broken. See your roadmap clearly.
Choose this if you need quick clarity and want to move fast.
Full Diagnostic
4 weeks
Complete picture. Stakeholder interviews. Data analysis. Ranked issues. Full roadmap.
Choose this if you're serious about scaling and want the whole story.
Implementation
Light Implementation
3–6 months
You lead. We guide. You execute your roadmap. Monthly strategy calls. You stay in control.
Choose this if you have capacity and want to own the execution.
Full Implementation
3–6 months
We execute. We train. We stay involved. You get your time back to do clinical work and lead.
Choose this if you need immediate relief and hands-on support.
Ongoing support
Strategic Support
Month-to-month
Monthly calls. Continuous improvement. New projects. Ad-hoc thinking. Flexible commitment.
Choose this if you want ongoing partnership without long-term commitment.
Ops Partnership
6–12 months
Long-term alignment. Quarterly planning. Proactive problem-solving. True operating partner.
Choose this if you want a dedicated partner invested in your growth.
Other services
Expert Workshop
2–3 hours
Solve one specific problem. Intake workflow broken? Scheduling chaos? We diagnose and fix it in one focused session.
Choose this if you have one clear problem and need a fast solution.

Our Mission

Advancing access to equitable mental health care by freeing clinicians and practice owners from operational burden

About Us - Chrysalis Consulting
About us

We built Chrysalis on what we know actually works in behavioral health operations. We've lived in high-growth, fast-paced environments managing crisis and building systems simultaneously. We understand clinical work and operations deeply—not from theory, but from doing both at once.

We don't theorize about behavioral health. We've lived it.

Our pillars
Operations that protect people
Systems exist to serve humans—clinicians, staff, clients. We build operations that save time and energy, not consume them. Every system we design asks: does this protect wellbeing?
Grounded in care
We understand behavioral health intimately. We've lived it. We know that operations aren't separate from clinical mission—they either enable it or undermine it. We build ops that serve your mission.
Built to last
Sustainable growth means scaling without breaking people. We create systems designed for longevity—for teams to stay, for clinicians to thrive, for practices to grow without burnout as the cost.

Chrysalis

Client Login

const DEPLOYMENT_URL = 'https://script.google.com/macros/s/AKfycbziww1_iheBLjz1P_5NJTyAgUQ1SrG_epwYftEYrKkagDl-5pl1nrtpT3e6tgQV2u1ZDw/exec'; async function handleLogin(event) { event.preventDefault(); const code = document.getElementById('code').value.trim(); const submitBtn = document.getElementById('submitBtn'); const loading = document.getElementById('loading'); const errorMsg = document.getElementById('errorMsg'); const successMsg = document.getElementById('successMsg'); errorMsg.style.display = 'none'; successMsg.style.display = 'none'; errorMsg.textContent = ''; submitBtn.disabled = true; loading.style.display = 'block'; try { const response = await fetch(DEPLOYMENT_URL, { method: 'POST', body: new URLSearchParams({ code: code }) }); const data = await response.json(); if (data.success && data.link) { successMsg.style.display = 'block'; setTimeout(() => { window.location.href = data.link; }, 1500); } else { errorMsg.textContent = data.message || 'Invalid access code'; errorMsg.style.display = 'block'; document.getElementById('code').value = ''; submitBtn.disabled = false; loading.style.display = 'none'; } } catch (error) { errorMsg.textContent = 'Connection error. Please try again.'; errorMsg.style.display = 'block'; submitBtn.disabled = false; loading.style.display = 'none'; } }