Skip to main content
Available for Full Stack Opportunities

Hi, I'm SoumyaChakraborty

A 3rd Year B.Tech CSE Student and Full Stack Developer creating intuitive, high-performance digital experiences.

Skills & Expertise

Programming Languages

Python
JavaScript
TypeScript
SQL
C

Frameworks & Dev

React.js
Next.js
Node.js
Tailwind CSS
Framer Motion
Three.js (Basics)

Tools & Platforms

Git & GitHub
AWS (Cloud)
VS Code
Figma

Inspect My Stats!

✏️ Select a skill sticker from the board to display real-time SVGs, stats, and commentary in this notebook.

🛡️ Dev Character Status

Equip my soft skill superpowers into the status slots to calculate my stats!

superpowers_pool.bin

Soumya Chakraborty

Level 20 Full Stack Dev

Select a slot above, then tap a soft skill from the pool to equip it.

Featured Projects

📂 Tap a folder to open its workspace, then run script commands in the terminal!

~/projects/shipordie
1# ShipOrDie: Multi-Agent Orchestrator (LangGraph)
2from langgraph.graph import StateGraph, END
3from backend.pipeline.state import PipelineState
4from backend.agents.scraper_agent import ScraperAgent
5from backend.agents.synthesizer_agent import SynthesizerAgent
6from backend.agents.idea_gen_agent import IdeaGenAgent
7from backend.agents.monetization_agent import MonetizationAgent
8 
9async def scraper_node(state: PipelineState) -> PipelineState:
10 signals = await ScraperAgent().run()
11 return {**state, "status": "scraping", "signals": signals}
12 
13async def synthesizer_node(state: PipelineState) -> PipelineState:
14 clusters = await SynthesizerAgent().run(state["signals"])
15 return {**state, "status": "synthesizing", "clusters": clusters}
16 
17async def idea_gen_node(state: PipelineState) -> PipelineState:
18 idea_cards = await IdeaGenAgent().run(state["clusters"])
19 return {**state, "status": "generating", "idea_cards": idea_cards}
20 
21async def monetization_node(state: PipelineState) -> PipelineState:
22 agent = MonetizationAgent()
23 reports = [await agent.run(idea) for idea in state["idea_cards"]]
24 return {**state, "status": "monetizing", "monetization_reports": reports}
25 
26def build_pipeline() -> StateGraph:
27 graph = StateGraph(PipelineState)
28
29 # Register Nodes
30 graph.add_node("scrape", scraper_node)
31 graph.add_node("synthesize", synthesizer_node)
32 graph.add_node("generate", idea_gen_node)
33 graph.add_node("monetize", monetization_node)
34
35 # Set Flow Edges
36 graph.set_entry_point("scrape")
37 graph.add_edge("scrape", "synthesize")
38 graph.add_edge("synthesize", "generate")
39 graph.add_edge("generate", "monetize")
40 graph.add_edge("monetize", END)
41
42 return graph.compile()

Summary: Multi-agent platform for validating SaaS ideas and optimizing resumes using CrewAI & LangGraph.

Competitions

Guild Quest Board

📜 Review the active quest logs, complete bounty missions, and claim rewards!

guild_bounty_board.db

Pinned Wanted Bounties

Active Quest

HACKTROPICA 2K26

🐲
obj: PHYGITAL TRACE🏆 CHAMPION
Active Quest

CODE FOR CHANGE 2.0

🤖
obj: NEETI AI🏆 CHAMPION
Active Quest

TEKATHON 2K26

🧠
obj: MULTIMODAL RAG🏆 CHAMPION
/// mission_directives.loglevel_99_wizard
Bounty Spec Sheet🐲

HACKTROPICA 2K26

📍 Host:AEC College

⚔️ Player ClassFull Stack Dev
⏳ Quest Time36 Hours
👥 Party Size4 Players
/// Objective Description

Built a blockchain supply chain ledger bridging physical tags with digital assets for anti-counterfeiting.

Acquired Loot Items (Tech Stack)
Next.jsSolidityBase L2FastAPIIPFS
HP:
❤️❤️❤️

Journey & Quests

🗺️ Click landmarks on the Realm Map to review entries and inspect quest chests!

realm_quest_map.db
🌲
🌲
⛰️
🧙‍♂️
The Python Jungle
The MERN Oasis
The Cloud Fortress
The Data Plains
The Analytical Tower
The Algorithm Dungeon
Page 1: Map of the Virtual Realm
Quest Log: Internship

Python Full Stack Developer Intern

@EduSkills Academy

Timeline: 2026
Remote

Completed a 10-week program building scalable web applications with Python, Django, SQL, and frontend technologies.

XP Gained (Tech Stack)
PythonDjangoSQLHTML5CSS3REST APIs
Quest Loot Inspector

[ Click Chest to Unlock Certificate Scroll ]

Page 2: Active Quest Log Record

Get In Touch

Have a question or want to work together? Let's talk!

Contact Information

Connect with me
forminit_contact_channel.sh

Send a Message