From 52d170290f0acc19e662f63a260ccfb00da6ad50 Mon Sep 17 00:00:00 2001 From: Alex Park Date: Sat, 7 Feb 2026 17:15:55 -0600 Subject: [PATCH] Add Stasis transcript (#158) * Add Stasis transcript * Add Stasis to transcripts list * pre-commit be happy --------- Co-authored-by: Amber --- nephthys/transcripts/__init__.py | 2 ++ nephthys/transcripts/transcripts/stasis.py | 25 ++++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 nephthys/transcripts/transcripts/stasis.py diff --git a/nephthys/transcripts/__init__.py b/nephthys/transcripts/__init__.py index 95a285b..e5e6cd3 100644 --- a/nephthys/transcripts/__init__.py +++ b/nephthys/transcripts/__init__.py @@ -7,6 +7,7 @@ from nephthys.transcripts.transcripts.flavortown import Flavortown from nephthys.transcripts.transcripts.identity import Identity from nephthys.transcripts.transcripts.jumpstart import Jumpstart from nephthys.transcripts.transcripts.midnight import Midnight +from nephthys.transcripts.transcripts.stasis import Stasis from nephthys.transcripts.transcripts.summer_of_making import SummerOfMaking @@ -17,4 +18,5 @@ transcripts: List[Type[Transcript]] = [ Midnight, Construct, Jumpstart, + Stasis, ] diff --git a/nephthys/transcripts/transcripts/stasis.py b/nephthys/transcripts/transcripts/stasis.py new file mode 100644 index 0000000..cea364b --- /dev/null +++ b/nephthys/transcripts/transcripts/stasis.py @@ -0,0 +1,25 @@ +from nephthys.transcripts.transcript import Transcript + + +class Stasis(Transcript): + """Transcript for Stasis""" + + program_name: str = "Stasis" + program_owner: str = "U01581HFAGZ" + + help_channel: str = "C09JP51FHN" + ticket_channel: str = "C0ADS32EJKE" + team_channel: str = "C09HXBX6336" + + faq_link: str = "https://hackclub.enterprise.slack.com/docs/T0266FRGM/F0AD7A7SP71" + identity_help_channel: str = "C092833JXKK" + + first_ticket_create: str = f""" +hi (user)! it looks like this is your first time here, welcome! someone should be along to help you soon but please read the <{faq_link}|faq>, it answers a lot of common questions. +if your question has been answered, please hit the button below to mark it as resolved +""" + ticket_create: str = f"someone should be along to help you soon but in the mean time i suggest you read the faq <{faq_link}|here> to make sure your question hasn't already been answered. if it has been, please hit the button below to mark it as resolved :D" + resolve_ticket_button: str = "i get it now" + ticket_resolve: str = f"oh, oh! it looks like this post has been marked as resolved by <@{{user_id}}>! if you have any more questions, please make a new post in <#{help_channel}> and someone'll be happy to help you out! not me though, i'm just a silly racoon ^-^" + + not_allowed_channel: str = f"heya, it looks like you're not supposed to be in that channel, pls talk to <@{program_owner}> if that's wrong"