@ogkranthi/agentshift 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. package/.github/CODEOWNERS +25 -0
  2. package/.github/ISSUE_TEMPLATE/bug_report.yml +93 -0
  3. package/.github/ISSUE_TEMPLATE/config.yml +5 -0
  4. package/.github/ISSUE_TEMPLATE/feature_request.yml +54 -0
  5. package/.github/ISSUE_TEMPLATE/platform_request.yml +55 -0
  6. package/.github/PULL_REQUEST_TEMPLATE.md +53 -0
  7. package/.github/SETUP.md +65 -0
  8. package/.github/workflows/ci.yml +85 -0
  9. package/AGENTS.md +68 -0
  10. package/BACKLOG.md +55 -0
  11. package/CODE_OF_CONDUCT.md +43 -0
  12. package/CONTRIBUTING.md +136 -0
  13. package/LICENSE +201 -0
  14. package/README.md +112 -0
  15. package/SECURITY.md +42 -0
  16. package/bin/agentshift.js +4 -0
  17. package/examples/pregnancy-companion/AGENTS.md +212 -0
  18. package/examples/pregnancy-companion/BOOTSTRAP.md +55 -0
  19. package/examples/pregnancy-companion/SKILL.md +88 -0
  20. package/examples/pregnancy-companion/data/appointments.md +5 -0
  21. package/examples/pregnancy-companion/data/questions-for-doctor.md +7 -0
  22. package/examples/pregnancy-companion/data/symptoms-log.md +5 -0
  23. package/examples/pregnancy-companion/data/weight-log.md +6 -0
  24. package/examples/pregnancy-companion/knowledge/appointments.md +122 -0
  25. package/examples/pregnancy-companion/knowledge/exercise.md +114 -0
  26. package/examples/pregnancy-companion/knowledge/nutrition.md +112 -0
  27. package/examples/pregnancy-companion/knowledge/warning-signs.md +80 -0
  28. package/examples/pregnancy-companion/knowledge/week-by-week.md +198 -0
  29. package/index.js +4 -0
  30. package/package.json +18 -0
  31. package/pyproject.toml +72 -0
  32. package/specs/claude-code-format.md +397 -0
  33. package/specs/ir-schema.json +438 -0
  34. package/specs/ir-schema.md +370 -0
  35. package/specs/openclaw-skill-format.md +483 -0
  36. package/src/agentshift/__init__.py +3 -0
  37. package/src/agentshift/cli.py +44 -0
  38. package/src/agentshift/emitters/__init__.py +1 -0
  39. package/src/agentshift/ir.py +134 -0
  40. package/src/agentshift/parsers/__init__.py +1 -0
  41. package/tests/__init__.py +0 -0
  42. package/tests/fixtures/pregnancy-companion/AGENTS.md +212 -0
  43. package/tests/fixtures/pregnancy-companion/BOOTSTRAP.md +55 -0
  44. package/tests/fixtures/pregnancy-companion/SKILL.md +88 -0
  45. package/tests/fixtures/pregnancy-companion/data/appointments.md +5 -0
  46. package/tests/fixtures/pregnancy-companion/data/questions-for-doctor.md +7 -0
  47. package/tests/fixtures/pregnancy-companion/data/symptoms-log.md +5 -0
  48. package/tests/fixtures/pregnancy-companion/data/weight-log.md +6 -0
  49. package/tests/fixtures/pregnancy-companion/knowledge/appointments.md +122 -0
  50. package/tests/fixtures/pregnancy-companion/knowledge/exercise.md +114 -0
  51. package/tests/fixtures/pregnancy-companion/knowledge/nutrition.md +112 -0
  52. package/tests/fixtures/pregnancy-companion/knowledge/warning-signs.md +80 -0
  53. package/tests/fixtures/pregnancy-companion/knowledge/week-by-week.md +198 -0
@@ -0,0 +1,112 @@
1
+ # Pregnancy Nutrition Guide
2
+
3
+ ## Key Nutrients by Trimester
4
+
5
+ ### First Trimester (Focus: Foundation Building)
6
+
7
+ | Nutrient | Daily Need | Why | Best Sources |
8
+ |----------|-----------|-----|-------------|
9
+ | Folate/Folic Acid | 600 mcg | Neural tube development, prevents birth defects | Leafy greens, lentils, fortified cereals, oranges |
10
+ | Iron | 27 mg | Blood volume increasing 50% | Red meat, spinach, beans, fortified cereals |
11
+ | Vitamin B6 | 1.9 mg | Helps with nausea, brain development | Chicken, fish, potatoes, bananas |
12
+ | Vitamin D | 600 IU | Bone development, immune function | Sunlight, fortified milk, eggs, salmon |
13
+ | DHA (Omega-3) | 200-300 mg | Brain and eye development | Salmon, sardines, walnuts, DHA supplement |
14
+
15
+ ### Second Trimester (Focus: Growth & Development)
16
+
17
+ | Nutrient | Daily Need | Why | Best Sources |
18
+ |----------|-----------|-----|-------------|
19
+ | Calcium | 1000 mg | Baby's bones and teeth forming | Milk, yogurt, cheese, fortified OJ, tofu |
20
+ | Protein | 75-100 g | Muscle and tissue growth | Eggs, lean meat, beans, Greek yogurt, nuts |
21
+ | Iron | 27 mg | Continued blood production | Same as above + pair with vitamin C for absorption |
22
+ | Magnesium | 350 mg | Reduces leg cramps, supports bones | Nuts, seeds, dark chocolate, avocado |
23
+ | Choline | 450 mg | Brain development | Eggs (esp. yolks), meat, soybeans |
24
+
25
+ ### Third Trimester (Focus: Final Growth & Prep)
26
+
27
+ | Nutrient | Daily Need | Why | Best Sources |
28
+ |----------|-----------|-----|-------------|
29
+ | Protein | 80-100 g | Baby gaining ~0.5 lb/week | Lean meats, fish, eggs, legumes |
30
+ | Calcium | 1000 mg | Bone hardening | Dairy, leafy greens, fortified foods |
31
+ | Vitamin K | 90 mcg | Blood clotting for delivery | Broccoli, kale, spinach |
32
+ | Fiber | 28-30 g | Constipation relief | Whole grains, fruits, vegetables, chia seeds |
33
+ | Iron | 27 mg | Preparing for blood loss at delivery | Red meat, lentils, fortified cereals |
34
+
35
+ ## Foods to AVOID During Pregnancy
36
+
37
+ ### Never Eat
38
+ - **Raw/undercooked meat, fish, eggs** — risk of salmonella, toxoplasmosis
39
+ - **High-mercury fish** — shark, swordfish, king mackerel, tilefish, bigeye tuna
40
+ - **Raw sprouts** — (alfalfa, clover) high bacteria risk
41
+ - **Unpasteurized** milk, cheese, juice — listeria risk
42
+ - **Deli meats/hot dogs** — unless heated until steaming (listeria risk)
43
+ - **Raw shellfish** — oysters, clams, mussels
44
+ - **Alcohol** — no safe amount during pregnancy
45
+
46
+ ### Limit
47
+ - **Caffeine** — max 200 mg/day (~one 12oz coffee)
48
+ - **Canned tuna** — limit to 6 oz/week (light tuna better than albacore)
49
+ - **Artificial sweeteners** — moderate use only; avoid saccharin
50
+ - **Herbal teas** — most are fine, but avoid large amounts of chamomile, licorice root
51
+
52
+ ### Safe Fish (Low Mercury, High Omega-3)
53
+ Eat 2-3 servings/week: salmon, sardines, anchovies, herring, trout, tilapia, shrimp, pollock
54
+
55
+ ## Meal Ideas by Trimester
56
+
57
+ ### First Trimester (When Nausea Is Real)
58
+ **Easy on the stomach:**
59
+ - Plain crackers or toast before getting out of bed
60
+ - Ginger tea with honey
61
+ - Banana smoothie with yogurt
62
+ - Plain rice with mild chicken broth
63
+ - Apple slices with peanut butter
64
+ - Cold foods (sandwiches, salads) if hot food smells trigger nausea
65
+
66
+ **When appetite allows:**
67
+ - Scrambled eggs on whole wheat toast
68
+ - Oatmeal with berries and walnuts
69
+ - Lentil soup
70
+ - Grilled chicken with sweet potato
71
+
72
+ ### Second Trimester (Appetite Returns!)
73
+ - Greek yogurt parfait with granola and berries (calcium + protein)
74
+ - Salmon with quinoa and roasted vegetables (DHA + protein + iron)
75
+ - Spinach and cheese omelet (folate + calcium + protein)
76
+ - Bean and cheese burrito with avocado (protein + fiber + magnesium)
77
+ - Trail mix: almonds, walnuts, dried fruit, dark chocolate (snacking)
78
+
79
+ ### Third Trimester (Smaller, More Frequent Meals)
80
+ - Mini meals every 2-3 hours (less room in stomach)
81
+ - Protein-rich snacks: hard-boiled eggs, cheese sticks, nut butter
82
+ - Iron-rich dinners: lean steak with broccoli, lentil curry
83
+ - Hydrating foods: watermelon, cucumber, soups
84
+ - Date fruit (6/day from week 36 may help with labor — research-backed)
85
+
86
+ ## Hydration
87
+
88
+ - **Goal**: 8-12 cups (64-96 oz) of water daily
89
+ - **Signs of dehydration**: dark urine, headache, dizziness, dry mouth
90
+ - **Tips**: Carry a water bottle, set reminders, infuse with lemon/cucumber if plain water is unappealing
91
+ - **Counts as fluid**: water, milk, herbal tea, broths, water-rich fruits
92
+ - **Doesn't count well**: caffeinated drinks (mild diuretic effect)
93
+
94
+ ## Weight Gain Guidelines (General)
95
+
96
+ | Pre-pregnancy BMI | Recommended Total Gain |
97
+ |-------------------|----------------------|
98
+ | Underweight (<18.5) | 28-40 lbs |
99
+ | Normal (18.5-24.9) | 25-35 lbs |
100
+ | Overweight (25-29.9) | 15-25 lbs |
101
+ | Obese (30+) | 11-20 lbs |
102
+
103
+ - First trimester: 1-5 lbs total
104
+ - Second & third: about 1 lb per week
105
+ - These are guidelines, not rules — every body is different. Doctor will monitor.
106
+
107
+ ## Handling Cravings
108
+
109
+ - Cravings are normal and often harmless — enjoy in moderation
110
+ - Craving ice, dirt, or non-food items (pica)? Tell your doctor — may indicate iron deficiency
111
+ - If craving sweets: try fruit, yogurt with honey, dark chocolate
112
+ - If craving salty: try nuts, popcorn, pickles (classic!)
@@ -0,0 +1,80 @@
1
+ # Warning Signs During Pregnancy
2
+
3
+ ## EMERGENCY — Go to ER or Call 911 Immediately
4
+
5
+ These require immediate medical attention:
6
+
7
+ - **Heavy vaginal bleeding** (soaking a pad in an hour) with or without pain
8
+ - **Severe abdominal pain** that doesn't go away
9
+ - **Seizures or convulsions**
10
+ - **Chest pain or difficulty breathing**
11
+ - **Thoughts of harming yourself or others** — call 988 (Suicide & Crisis Lifeline) or go to ER
12
+ - **Umbilical cord visible or felt in vagina** (cord prolapse — get on hands and knees, call 911)
13
+
14
+ ## URGENT — Call Your Doctor Right Away (Same Day)
15
+
16
+ - **Vaginal bleeding** — any amount, any trimester
17
+ - **Severe headache** that won't go away, especially with vision changes
18
+ - **Vision changes** — blurring, seeing spots, flashing lights
19
+ - **Sudden swelling** of face, hands, or feet (could indicate preeclampsia)
20
+ - **Fever over 100.4°F (38°C)**
21
+ - **Painful urination** with fever or back pain (kidney infection risk)
22
+ - **Regular contractions before 37 weeks** (preterm labor)
23
+ - **Fluid gushing or leaking from vagina** (could be amniotic fluid)
24
+ - **Baby not moving** — fewer than 10 movements in 2 hours (after 28 weeks)
25
+ - **Severe vomiting** — can't keep any food or water down for 24 hours
26
+ - **Severe itching** all over body, especially palms and soles (could indicate cholestasis)
27
+ - **Fall, car accident, or abdominal trauma**
28
+
29
+ ## MONITOR — Mention at Next Appointment
30
+
31
+ These are worth tracking and discussing with your doctor:
32
+
33
+ - Persistent headaches
34
+ - Swelling that comes and goes in ankles/feet
35
+ - Heartburn that doesn't respond to remedies
36
+ - Consistent trouble sleeping
37
+ - Mood changes that feel overwhelming
38
+ - Frequent Braxton Hicks (more than 4 per hour before 37 weeks = call doctor)
39
+ - Unusual discharge (green, yellow, foul-smelling)
40
+ - Persistent back pain
41
+ - Painful varicose veins
42
+
43
+ ## What's NORMAL (Usually Not a Concern)
44
+
45
+ - Light cramping (similar to period cramps) in first trimester
46
+ - Spotting after sex or internal exam
47
+ - Round ligament pain (sharp side pain when moving quickly)
48
+ - Braxton Hicks contractions (irregular, painless tightening)
49
+ - Increased vaginal discharge (clear/white, no odor)
50
+ - Nosebleeds and bleeding gums
51
+ - Mild swelling in ankles at end of day
52
+ - "Lightning crotch" (sharp pelvic nerve pain in third trimester)
53
+ - Nesting urge (sudden desire to clean everything)
54
+ - Losing mucus plug (can happen weeks before labor)
55
+
56
+ ## Preeclampsia Awareness
57
+
58
+ Preeclampsia can develop after week 20. Know the signs:
59
+ - High blood pressure (measured at appointments)
60
+ - Protein in urine (tested at appointments)
61
+ - Severe headache
62
+ - Vision changes (blurry, spots, sensitivity to light)
63
+ - Upper abdominal pain (under ribs, right side)
64
+ - Sudden weight gain (more than 4 lbs in a week)
65
+ - Severe swelling of face and hands
66
+ - Nausea/vomiting in second half of pregnancy
67
+
68
+ **If you notice 2+ of these symptoms together, call your doctor immediately.**
69
+
70
+ ## Kick Counting Guide (Start at 28 Weeks)
71
+
72
+ **How to count kicks:**
73
+ 1. Pick a time when baby is usually active (often after meals or in evening)
74
+ 2. Sit or lie on your side comfortably
75
+ 3. Count any movement — kicks, rolls, jabs, flutters
76
+ 4. You should feel at least 10 movements in 2 hours
77
+ 5. If fewer than 10 in 2 hours: drink cold water, eat something, try again
78
+ 6. If still fewer than 10: call your doctor
79
+
80
+ **Note**: Every baby has their own pattern. Learn what's normal for YOUR baby and report changes.
@@ -0,0 +1,198 @@
1
+ # Pregnancy Week-by-Week Guide
2
+
3
+ ## First Trimester (Weeks 1-12)
4
+
5
+ ### Week 4
6
+ - **Baby**: Tiny ball of cells (blastocyst) implanting in uterus. Size: poppy seed
7
+ - **Symptoms**: Missed period, light spotting (implantation bleeding), mild cramping, breast tenderness
8
+ - **Normal**: Light spotting is common and usually harmless
9
+ - **Tip**: Start prenatal vitamins if you haven't already (folate is critical now)
10
+
11
+ ### Week 5
12
+ - **Baby**: Heart begins to form and beat. Neural tube developing. Size: sesame seed
13
+ - **Symptoms**: Fatigue, nausea may begin, frequent urination, mood swings
14
+ - **Normal**: Extreme tiredness — your body is building a placenta
15
+ - **Tip**: Rest when you can. Small frequent meals help with nausea
16
+
17
+ ### Week 6
18
+ - **Baby**: Tiny buds for arms and legs appear. Heart beating ~110 bpm. Size: lentil
19
+ - **Symptoms**: Morning sickness (can happen any time of day), food aversions, bloating
20
+ - **Normal**: Nausea peaks between weeks 6-9 for most women
21
+ - **Tip**: Ginger tea, crackers before getting up, eat before you feel hungry
22
+
23
+ ### Week 7
24
+ - **Baby**: Brain growing rapidly. Facial features forming. Hands and feet like paddles. Size: blueberry
25
+ - **Symptoms**: Continued nausea, acne, excess saliva, vivid dreams
26
+ - **Normal**: Your uterus has doubled in size already
27
+ - **Tip**: Stay hydrated — sip water throughout the day
28
+
29
+ ### Week 8
30
+ - **Baby**: Fingers and toes forming. Baby moving (too small to feel). Size: raspberry
31
+ - **Symptoms**: Heightened sense of smell, constipation, mild cramping as uterus expands
32
+ - **Normal**: Some cramping is normal as your uterus grows
33
+ - **Tip**: First prenatal visit usually happens around now — exciting!
34
+
35
+ ### Week 9
36
+ - **Baby**: All essential organs have begun forming. Looks more human. Size: grape
37
+ - **Symptoms**: Mood swings, continued nausea, growing breasts
38
+ - **Normal**: Emotional rollercoaster is hormonal and completely expected
39
+ - **Tip**: Fiber-rich foods and water help with constipation
40
+
41
+ ### Week 10
42
+ - **Baby**: Officially a "fetus" now! Bones starting to form. Size: kumquat
43
+ - **Symptoms**: Visible veins, round ligament pain, growing belly
44
+ - **Normal**: Veins more visible as blood volume increases by 50%
45
+ - **Tip**: Good time to start thinking about maternity clothes for comfort
46
+
47
+ ### Week 11
48
+ - **Baby**: Tooth buds forming. Fingers and toes separating. Size: fig
49
+ - **Symptoms**: Nausea may start easing, increased appetite returning
50
+ - **Normal**: Some bloating may make you look more pregnant than you are
51
+ - **Tip**: Eat when hungry — your body knows what it needs
52
+
53
+ ### Week 12
54
+ - **Baby**: Reflexes developing. Can open and close fingers. Size: lime
55
+ - **Symptoms**: Nausea often starts improving, energy may return slightly
56
+ - **Normal**: End of highest-risk period — many parents share the news now
57
+ - **Tip**: NT scan (nuchal translucency) often done around weeks 11-13
58
+
59
+ ## Second Trimester (Weeks 13-26)
60
+
61
+ ### Week 13
62
+ - **Baby**: Fingerprints forming. Vocal cords developing. Size: peapod
63
+ - **Symptoms**: Energy returning! Nausea fading. May feel hungry more often
64
+ - **Normal**: Welcome to the "honeymoon trimester" — many feel much better
65
+ - **Tip**: Great time to start gentle exercise if you haven't
66
+
67
+ ### Week 14
68
+ - **Baby**: Can make facial expressions. Body growing faster than head. Size: lemon
69
+ - **Symptoms**: Less nausea, round ligament pain, stuffy nose (pregnancy rhinitis)
70
+ - **Normal**: Stuffy nose is from increased blood flow — totally normal
71
+ - **Tip**: Saline spray helps with congestion
72
+
73
+ ### Week 15
74
+ - **Baby**: Can sense light through eyelids. Legs now longer than arms. Size: apple
75
+ - **Symptoms**: Increased energy, possible nosebleeds, skin changes (glow!)
76
+ - **Normal**: Bleeding gums and nosebleeds are common due to increased blood volume
77
+ - **Tip**: Use a soft toothbrush and keep up dental hygiene
78
+
79
+ ### Week 16
80
+ - **Baby**: Muscles strengthening. Patterned breathing movements. Size: avocado
81
+ - **Symptoms**: Baby bump becoming visible, backache may start
82
+ - **Normal**: Each body shows differently — no "right" size at any week
83
+ - **Tip**: Start sleeping on your side (left side preferred for blood flow)
84
+
85
+ ### Week 17
86
+ - **Baby**: Fat stores beginning. Sweat glands developing. Size: turnip
87
+ - **Symptoms**: Increased appetite, possible heartburn, vivid dreams
88
+ - **Normal**: Appetite increase is healthy — eating for baby's growth
89
+ - **Tip**: Small frequent meals help with heartburn
90
+
91
+ ### Week 18
92
+ - **Baby**: Ears in final position. Can hear sounds! Size: bell pepper
93
+ - **Symptoms**: Dizziness (blood pressure changes), growing belly
94
+ - **Normal**: Stand up slowly to avoid lightheadedness
95
+ - **Tip**: Talk or sing to baby — they can hear you now!
96
+
97
+ ### Week 19
98
+ - **Baby**: Vernix (protective coating) forming. Sensory development. Size: mango
99
+ - **Symptoms**: Possible first flutters (quickening), hip pain
100
+ - **Normal**: First-time moms often feel movement between 18-25 weeks
101
+ - **Tip**: Anatomy scan usually scheduled around weeks 18-22
102
+
103
+ ### Week 20
104
+ - **Baby**: Halfway there! Can swallow. Sleep-wake cycles forming. Size: banana
105
+ - **Symptoms**: Definite baby bump, linea nigra may appear, swelling in feet
106
+ - **Normal**: Dark line on belly (linea nigra) fades after birth
107
+ - **Tip**: Elevate feet when resting to reduce swelling
108
+
109
+ ### Week 21
110
+ - **Baby**: Eyebrows and eyelids fully formed. Active mover! Size: carrot
111
+ - **Symptoms**: Braxton Hicks may start (practice contractions), backache
112
+ - **Normal**: Braxton Hicks feel like tightening — irregular and painless
113
+ - **Tip**: Stay active — walking helps with many discomforts
114
+
115
+ ### Week 22
116
+ - **Baby**: Looks like a miniature newborn. Grip is strong. Size: papaya
117
+ - **Symptoms**: Stretch marks may appear, increased vaginal discharge
118
+ - **Normal**: Clear/white discharge is normal; call doctor if colored/smelly
119
+ - **Tip**: Moisturize belly, hips, and breasts (may not prevent but feels good)
120
+
121
+ ### Week 23
122
+ - **Baby**: Hearing more refined. Can recognize your voice. Size: grapefruit
123
+ - **Symptoms**: Swollen ankles, Braxton Hicks, trouble sleeping
124
+ - **Normal**: Pregnancy pillow can be a lifesaver for sleep
125
+ - **Tip**: Glucose screening test usually done around weeks 24-28
126
+
127
+ ### Week 24
128
+ - **Baby**: Lungs developing surfactant. Viable outside womb with NICU care. Size: corn on the cob
129
+ - **Symptoms**: Itchy skin (stretching), leg cramps, carpal tunnel symptoms
130
+ - **Normal**: Leg cramps at night are common — stretch calves before bed
131
+ - **Tip**: Stay hydrated and consider magnesium-rich foods
132
+
133
+ ### Week 25
134
+ - **Baby**: Responding to touch. Hair growing. Size: cauliflower
135
+ - **Symptoms**: Heartburn, hemorrhoids, snoring (yes, really)
136
+ - **Normal**: Snoring from nasal swelling is surprisingly common
137
+ - **Tip**: Prop head up slightly when sleeping to help with heartburn
138
+
139
+ ### Week 26
140
+ - **Baby**: Eyes opening! Can see light and dark. Lungs maturing. Size: lettuce head
141
+ - **Symptoms**: Trouble sleeping, frequent bathroom trips return, Braxton Hicks
142
+ - **Normal**: Baby pushing on bladder = more bathroom trips
143
+ - **Tip**: Start thinking about birth plan preferences
144
+
145
+ ## Third Trimester (Weeks 27-40)
146
+
147
+ ### Week 27
148
+ - **Baby**: Regular sleep-wake cycle. Brain very active. Size: cauliflower
149
+ - **Symptoms**: Leg cramps, shortness of breath, swelling
150
+ - **Normal**: Feeling out of breath is baby pushing up on diaphragm
151
+ - **Tip**: Third trimester! Home stretch begins
152
+
153
+ ### Week 28
154
+ - **Baby**: Can blink. Dreaming (REM sleep detected). Size: eggplant
155
+ - **Symptoms**: Trouble sleeping, frequent urination, back pain
156
+ - **Normal**: Rh-negative moms get RhoGAM injection around now
157
+ - **Tip**: Start counting kicks — 10 movements in 2 hours is good
158
+
159
+ ### Week 29-30
160
+ - **Baby**: Brain growing rapidly. Gaining about half a pound per week. Size: butternut squash
161
+ - **Symptoms**: Heartburn, swelling, fatigue returning, mood changes
162
+ - **Normal**: Fatigue returning is normal — you're carrying a lot!
163
+ - **Tip**: Pack hospital bag, tour the birth center/hospital
164
+
165
+ ### Week 31-32
166
+ - **Baby**: All five senses working. Toenails growing. May turn head-down. Size: coconut
167
+ - **Symptoms**: Braxton Hicks more frequent, pelvic pressure, insomnia
168
+ - **Normal**: More frequent Braxton Hicks is normal — irregular is key
169
+ - **Tip**: Prenatal visits every 2 weeks now
170
+
171
+ ### Week 33-34
172
+ - **Baby**: Bones hardening (except skull). Immune system developing. Size: pineapple
173
+ - **Symptoms**: Difficulty breathing, pelvic pain, fatigue
174
+ - **Normal**: Baby may "drop" (engage in pelvis) — breathing gets easier
175
+ - **Tip**: Install car seat, finalize birth plan
176
+
177
+ ### Week 35-36
178
+ - **Baby**: Less room to move but still active. Gaining ~1 oz per day. Size: honeydew melon
179
+ - **Symptoms**: Frequent urination, pelvic pressure, nesting instinct
180
+ - **Normal**: Nesting (sudden urge to clean/organize) is very real!
181
+ - **Tip**: Group B strep test usually done at week 36. Weekly visits start.
182
+
183
+ ### Week 37-38
184
+ - **Baby**: Considered "early term." Lungs nearly mature. Size: winter melon
185
+ - **Symptoms**: Lightning crotch (sharp pelvic pains), mucus plug may release
186
+ - **Normal**: Losing mucus plug can happen weeks before labor
187
+ - **Tip**: Know the signs of labor: regular contractions, water breaking, bloody show
188
+
189
+ ### Week 39-40
190
+ - **Baby**: Full term! Ready to meet the world. Average: 7-8 lbs, 19-21 inches
191
+ - **Symptoms**: Contractions (real vs. Braxton Hicks), extreme fatigue, excitement/anxiety
192
+ - **Normal**: Due date is an estimate — only 5% of babies arrive on their due date
193
+ - **Tip**: Rest, stay hydrated, time contractions (5-1-1 rule: 5 min apart, 1 min long, for 1 hour)
194
+
195
+ ### Week 41+
196
+ - **Baby**: Still growing. Doctor will monitor closely
197
+ - **Normal**: Going past due date is common, especially for first pregnancies
198
+ - **Tip**: Doctor will discuss induction options. Non-stress tests may be done.
package/index.js ADDED
@@ -0,0 +1,4 @@
1
+ module.exports = {
2
+ name: "agentshift",
3
+ description: "CLI transpiler for converting AI agents between platforms. See https://github.com/ogkranthi/agentshift",
4
+ };
package/package.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "@ogkranthi/agentshift",
3
+ "version": "0.1.0",
4
+ "description": "CLI transpiler for converting AI agents between platforms",
5
+ "keywords": ["ai", "agents", "portability", "transpiler", "openclaw", "copilot", "bedrock"],
6
+ "homepage": "https://github.com/ogkranthi/agentshift",
7
+ "bugs": "https://github.com/ogkranthi/agentshift/issues",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/ogkranthi/agentshift.git"
11
+ },
12
+ "license": "Apache-2.0",
13
+ "author": "Kranthi Kumar",
14
+ "main": "index.js",
15
+ "bin": {
16
+ "agentshift": "./bin/agentshift.js"
17
+ }
18
+ }
package/pyproject.toml ADDED
@@ -0,0 +1,72 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "agentshift"
7
+ version = "0.1.0"
8
+ description = "CLI transpiler for converting AI agents between platforms"
9
+ readme = "README.md"
10
+ license = "Apache-2.0"
11
+ requires-python = ">=3.11"
12
+ authors = [
13
+ { name = "Kranthi Kumar" },
14
+ ]
15
+ keywords = ["ai", "agents", "portability", "transpiler", "openclaw", "copilot", "bedrock"]
16
+ classifiers = [
17
+ "Development Status :: 3 - Alpha",
18
+ "Intended Audience :: Developers",
19
+ "License :: OSI Approved :: Apache Software License",
20
+ "Programming Language :: Python :: 3.11",
21
+ "Programming Language :: Python :: 3.12",
22
+ "Topic :: Software Development :: Code Generators",
23
+ ]
24
+ dependencies = [
25
+ "typer>=0.12",
26
+ "rich>=13.0",
27
+ "pyyaml>=6.0",
28
+ "jsonschema>=4.20",
29
+ "pydantic>=2.0",
30
+ ]
31
+
32
+ [project.optional-dependencies]
33
+ dev = [
34
+ "pytest>=8.0",
35
+ "pytest-cov>=5.0",
36
+ "ruff>=0.8",
37
+ ]
38
+
39
+ [project.scripts]
40
+ agentshift = "agentshift.cli:app"
41
+
42
+ [tool.hatch.build.targets.wheel]
43
+ packages = ["src/agentshift"]
44
+
45
+ [tool.pytest.ini_options]
46
+ testpaths = ["tests"]
47
+ pythonpath = ["src"]
48
+
49
+ [tool.ruff]
50
+ target-version = "py311"
51
+ line-length = 100
52
+ src = ["src", "tests"]
53
+
54
+ [tool.ruff.lint]
55
+ select = [
56
+ "E", # pycodestyle errors
57
+ "W", # pycodestyle warnings
58
+ "F", # pyflakes
59
+ "I", # isort
60
+ "N", # pep8-naming
61
+ "UP", # pyupgrade
62
+ "B", # flake8-bugbear
63
+ "SIM", # flake8-simplify
64
+ "TCH", # flake8-type-checking
65
+ "RUF", # ruff-specific rules
66
+ ]
67
+ ignore = [
68
+ "E501", # line too long (handled by formatter)
69
+ ]
70
+
71
+ [tool.ruff.lint.isort]
72
+ known-first-party = ["agentshift"]