Admin HIPPA COMPLIANCE

our calmhaven.app has pickaxes that provide advice. " 14 powerful AI guides. Infinite paths to clarity. Welcome to Calmhaven.app — Your Sanctuary for Clarity, Growth, and Inner Power Step into a studio of 14 powerful AI guides, each designed to meet you exactly where you are — whether you’re …" Someone asked me if we are HIPPA compliant. Are pickaxes HIPPA compliant and do then need to be?

1 Like

If you want to be HIPPA compliant, the first one thing you’ll want to do is toggle off ‘Collect History’ setting found under the Settings tab of the Studio. I’ve included a screenshot. This is very important. That is the most important thing from the Pickaxe side.

Then you’ll want to look into some other requirements for HIPPA. I’m not a certified expert so can’t give you great advice. If you want to add, for example, a cookie consent pop-up you can do that sorta thing in the Settings tab as well.

For anyone looking to create the cookie pop up box at the bottom of their studio and pickaxes you can use the code below and paste it into the footer box.

<style>
  #cookieConsentBanner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #222;
    color: #fff;
    padding: 16px;
    z-index: 9999;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    display: none;
    font-family: sans-serif;
  }
  #cookieConsentBanner button {
    margin-left: 10px;
    padding: 8px 12px;
    background: #f1c40f;
    border: none;
    color: #000;
    cursor: pointer;
    border-radius: 5px;
  }
</style>

<div id="cookieConsentBanner">
  This website uses cookies to ensure you get the best experience.
  <button id="acceptCookieBtn">Accept</button>
</div>

<script>
  document.addEventListener("DOMContentLoaded", function() {
    const banner = document.getElementById("cookieConsentBanner");
    const btn = document.getElementById("acceptCookieBtn");

    if (!localStorage.getItem("cookieConsentAccepted")) {
      banner.style.display = "block";
    }

    btn.addEventListener("click", function() {
      localStorage.setItem("cookieConsentAccepted", "true");
      banner.style.display = "none";
    });
  });
</script>
1 Like

Nice one @jeanette ! This is very helpful for users who intend to become/remain HIPAA compliant.

1 Like