<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Misar.AI</title>
    <description>The latest articles on DEV Community by Misar.AI (@misar_ai).</description>
    <link>https://dev.to/misar_ai</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4088700%2F3a013a1a-8a1a-481b-a752-c51fe96609ed.png</url>
      <title>DEV Community: Misar.AI</title>
      <link>https://dev.to/misar_ai</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/misar_ai"/>
    <language>en</language>
    <item>
      <title>Claude Code vs Cursor: Which AI Coding Tool Fits How You Work?</title>
      <dc:creator>Misar.AI</dc:creator>
      <pubDate>Fri, 28 Aug 2026 17:22:46 +0000</pubDate>
      <link>https://dev.to/misar_ai/claude-code-vs-cursor-which-ai-coding-tool-fits-how-you-work-83c</link>
      <guid>https://dev.to/misar_ai/claude-code-vs-cursor-which-ai-coding-tool-fits-how-you-work-83c</guid>
      <description>&lt;p&gt;Both are AI coding tools that a lot of developers now use daily. They are built on different assumptions about where the work happens, and that difference decides which one suits you far more than any feature list does.&lt;/p&gt;

&lt;h2&gt;
  
  
  The shape of each tool
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Cursor is an editor.&lt;/strong&gt; It is a fork of VS Code with AI woven through it. You open a project, you see your files, you edit them, and the AI is available in a sidebar, inline as you type, and in a composer that can change several files at once. The mental model is your normal editing session with a very capable assistant sitting next to you.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Claude Code is an agent in your terminal.&lt;/strong&gt; There is no editor. You describe what you want, and it explores the codebase, reads files, makes edits, runs commands and reports back. The mental model is delegating a task to someone who works on your machine and tells you what they did.&lt;/p&gt;

&lt;p&gt;That is the whole comparison in miniature. Cursor keeps you in the loop character by character. Claude Code keeps you in the loop task by task.&lt;/p&gt;

&lt;h2&gt;
  
  
  Where each one is clearly better
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Cursor is better when you are the one writing.&lt;/strong&gt; Tab completion that understands your codebase is genuinely excellent, and for the ordinary work of building a feature you know how to build, it removes typing without removing control. If you like seeing every change as it happens, this is the better fit.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Claude Code is better for work that spans many files.&lt;/strong&gt; Rename a concept across forty files, add a parameter through a call chain, work out why a test fails when you have no idea which layer is broken. Because it explores rather than being pointed, it handles the ones where you cannot name the files in advance — which are precisely the tasks that are most tedious by hand.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Claude Code is better in a terminal-centred workflow.&lt;/strong&gt; It runs your tests, reads the failures, and iterates. It uses git. It works over SSH on a remote machine, and it composes with other command-line tools. If your work already lives in a terminal, it slots in.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Cursor is better if you want to stay in one window.&lt;/strong&gt; Everything is in the editor. No context switching, no second tool.&lt;/p&gt;

&lt;h2&gt;
  
  
  The honest trade-off
&lt;/h2&gt;

&lt;p&gt;The real difference is how much you want to review, and when.&lt;/p&gt;

&lt;p&gt;With Cursor you see every diff as it lands. Nothing changes without passing your eyes. That is reassuring, and it is also a limit: your attention is the bottleneck, so throughput is capped by how fast you can read.&lt;/p&gt;

&lt;p&gt;Claude Code will go away and come back having changed a dozen files. That is a great deal more leverage, and it demands a different discipline. You review the result rather than the keystrokes, and you need git hygiene — commit before you start, read the diff after — because "undo" is now a version-control operation rather than Ctrl+Z.&lt;/p&gt;

&lt;p&gt;Some developers find delegating at that granularity uncomfortable. That is a reasonable preference rather than a failure to adapt, and it points at Cursor.&lt;/p&gt;

&lt;h2&gt;
  
  
  Things people get wrong
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;"Cursor is for beginners, Claude Code is for experts."&lt;/strong&gt; Not true in either direction. Cursor's inline completion rewards knowing exactly what you want. Claude Code's agentic loop is arguably more forgiving of a vague starting point, because it investigates first.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;"You can only pick one."&lt;/strong&gt; Plenty of people run both, and they do not conflict — Claude Code edits files on disk, and Cursor picks the changes up. A common split is Cursor for the code you are actively writing, Claude Code for refactors, investigations and test-fixing.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;"The model is what matters."&lt;/strong&gt; The model matters, but the harness around it matters as much. The same model behaves differently depending on whether it can run your test suite and read the failure. A tool that can execute and iterate solves things a tool that only suggests text cannot.&lt;/p&gt;

&lt;h2&gt;
  
  
  Cost
&lt;/h2&gt;

&lt;p&gt;Both are subscriptions and both have usage limits that heavier users hit. Cursor's pricing is closer to a flat editor subscription. Claude Code's cost scales more with how much work you actually delegate, since agentic runs read and write a lot more context than a completion does.&lt;/p&gt;

&lt;p&gt;Worth being clear-eyed: if you delegate large tasks all day, Claude Code is the more expensive habit. Whether that is worth it depends on what the tasks would have cost you in hours.&lt;/p&gt;

&lt;h2&gt;
  
  
  How to choose
&lt;/h2&gt;

&lt;p&gt;Ask what your bottleneck is.&lt;/p&gt;

&lt;p&gt;If it is &lt;strong&gt;typing&lt;/strong&gt; — you know what to build and want to build it faster — Cursor.&lt;/p&gt;

&lt;p&gt;If it is &lt;strong&gt;investigation and scope&lt;/strong&gt; — the change touches more files than you want to open, or you do not yet know where the problem lives — Claude Code.&lt;/p&gt;

&lt;p&gt;If it is &lt;strong&gt;neither&lt;/strong&gt;, and you are mostly reading and thinking, no tool will help much, and you should try both for a week before paying for either.&lt;/p&gt;

&lt;p&gt;The most common outcome among people who try both is not a winner. It is a division of labour: the editor for the code you are writing now, the agent for the work you would rather hand to someone else.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Originally published at &lt;a href="https://www.misar.blog/@misar-ai/articles/claude-code-vs-cursor-which-ai-coding-tool-fits-how-you-work?utm_source=devto&amp;amp;utm_medium=syndication" rel="noopener noreferrer"&gt;https://www.misar.blog/@misar-ai/articles/claude-code-vs-cursor-which-ai-coding-tool-fits-how-you-work&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>aicoding</category>
      <category>claudecode</category>
      <category>cursor</category>
      <category>developertools</category>
    </item>
    <item>
      <title>AI in Physical Therapy: What It Can Actually Do for Clinicians</title>
      <dc:creator>Misar.AI</dc:creator>
      <pubDate>Wed, 26 Aug 2026 01:58:38 +0000</pubDate>
      <link>https://dev.to/misar_ai/ai-in-physical-therapy-what-it-can-actually-do-for-clinicians-2mbi</link>
      <guid>https://dev.to/misar_ai/ai-in-physical-therapy-what-it-can-actually-do-for-clinicians-2mbi</guid>
      <description>&lt;p&gt;Physical therapy is a hands-on profession, which is exactly why the noise around "AI in physical therapy" is so hard to read. Vendors demo motion-capture that grades a squat; clinicians go back to a caseload where the real constraint is documentation, not squat grading. Both things are true at once, and the gap between them is where most of the disappointment lives.&lt;/p&gt;

&lt;p&gt;This is a practical look at what AI is genuinely doing in physical therapy today, where it stops, and how to evaluate a tool before it costs you a month.&lt;/p&gt;

&lt;h2&gt;
  
  
  Where AI actually helps today
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Documentation and note-drafting.&lt;/strong&gt; This is the least glamorous use and the one with the clearest return. A structured note drafted from a session summary, then corrected by the clinician, removes a large share of after-hours charting. The clinician still owns the note — the model just gets it to 80% so the remaining 20% is editing rather than composition.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Movement analysis from ordinary video.&lt;/strong&gt; Pose estimation from a phone camera has become genuinely usable for gross measures: joint angles, symmetry, tempo, rep counting. It is good at consistency — the same measurement, taken the same way, week over week. That consistency is the value, not the precision of any single reading.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Home-exercise adherence.&lt;/strong&gt; Most home programmes fail quietly. A model can nudge, count, and flag when a patient stops without needing the clinician to chase. Adherence tracking is a scheduling and messaging problem more than an AI problem, but the pattern-spotting on top of it is real.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Triage and intake.&lt;/strong&gt; Structured intake questions, sorted and summarised before the first appointment, means the first ten minutes are not spent gathering history that a form could have collected.&lt;/p&gt;

&lt;h2&gt;
  
  
  Where it stops
&lt;/h2&gt;

&lt;p&gt;Be clear-eyed about the limits, because this is where vendor demos get quiet.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;It does not palpate.&lt;/strong&gt; A large part of assessment is tactile and contextual. No camera captures tissue quality, guarding, or the patient's face when they shift position.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;It generalises from populations you may not treat.&lt;/strong&gt; A model trained largely on healthy adults performing clean movements will behave unpredictably on post-surgical, paediatric, geriatric, or neurological presentations. Ask any vendor what their training population looked like. A vendor who cannot answer that is telling you something.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;It cannot carry clinical liability.&lt;/strong&gt; A suggestion is not a decision. Every regulator that has addressed this treats the clinician as the decision-maker, and the documentation needs to reflect genuine clinical reasoning, not a pasted model output.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Patient data is the hard part.&lt;/strong&gt; Health data carries real obligations — HIPAA, GDPR, or your local equivalent. "The vendor says it is secure" is not a compliance position. Where is the data processed, who can see it, what is retained, and can you get it deleted?&lt;/p&gt;

&lt;h2&gt;
  
  
  How to evaluate a tool without losing a month
&lt;/h2&gt;

&lt;p&gt;A few questions cut through most sales conversations:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;What does it remove from my week?&lt;/strong&gt; If the answer is not measured in hours, it is a toy. Adding a tool that produces work is a net loss.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;What happens when it is wrong?&lt;/strong&gt; A good tool makes its errors obvious and cheap to correct. A bad one buries them in a plausible-looking note you sign.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Does it fit the workflow I already have,&lt;/strong&gt; or does it demand a new one? Tools that require the whole clinic to change behaviour rarely survive contact with a busy Tuesday.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Can I export everything?&lt;/strong&gt; If your notes and measurements are trapped, you are renting your own records.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Who is accountable?&lt;/strong&gt; Name the person who reviews model output before it reaches a patient.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Run any tool on a narrow slice first — one clinician, one caseload, four weeks — and measure the thing you said you would measure. Most failed rollouts are failed evaluations.&lt;/p&gt;

&lt;h2&gt;
  
  
  A note on "specialist" AI
&lt;/h2&gt;

&lt;p&gt;General-purpose chatbots are broad and shallow. They will answer a physical therapy question confidently and sometimes wrongly, because nothing in them distinguishes a well-supported protocol from something that appeared once on a forum. The useful pattern is narrower: an assistant scoped to a domain, built with input from people who actually practise it, and honest about the boundary of what it knows.&lt;/p&gt;

&lt;p&gt;That is the idea behind &lt;a href="https://www.misar.ai" rel="noopener noreferrer"&gt;Misar.AI&lt;/a&gt; — specialised assistants built with domain experts rather than one model asked to be everything. For a clinician, the practical difference is what happens at the edge of competence: a scoped assistant should say it does not know and point you back to the literature, instead of producing something fluent and unsupported. It is free to start, which is the right way to test whether a claim like that survives your own questions.&lt;/p&gt;

&lt;h2&gt;
  
  
  The honest summary
&lt;/h2&gt;

&lt;p&gt;AI in physical therapy is currently strongest at the work around treatment — notes, intake, adherence, tracking — and weakest at treatment itself. That is not a disappointing conclusion. Administrative load is a leading contributor to clinician burnout, and a tool that gives back several hours a week is doing real work even if it never touches a patient.&lt;/p&gt;

&lt;p&gt;Be suspicious of anything that promises to assess. Be interested in anything that promises to get you out of the clinic on time.&lt;/p&gt;

&lt;h2&gt;
  
  
  Integrating AI into Existing Documentation Workflows
&lt;/h2&gt;

&lt;p&gt;AI‑generated note drafts can be slotted directly into your current electronic health record (EHR) by exporting structured templates in HL7 or FHIR formats. When the system populates key sections—chief complaint, assessment, plan—clinicians only need to review and correct, which keeps the clinician in the decision loop and satisfies liability requirements.&lt;br&gt;
Clinicians should treat the AI output as a first‑draft, not a final product. By setting up a version‑control log that flags when the AI model was last updated, the practice can audit the source of any discrepancy and ensure that the documentation reflects genuine clinical reasoning. &lt;br&gt;
Change management is critical: a brief onboarding session that walks staff through the “edit‑then‑sign” workflow, coupled with a quick reference guide, will reduce resistance. A small group of champions can gather feedback on the AI’s accuracy, allowing the vendor to fine‑tune prompts or train a custom model for your patient population.&lt;/p&gt;

&lt;h2&gt;
  
  
  Leveraging AI for Remote Monitoring and Telehealth
&lt;/h2&gt;

&lt;p&gt;Phone‑camera pose estimation is now robust enough to provide real‑time joint‑angle feedback during a virtual session. By overlaying a live angle readout on the patient’s video feed, the clinician can correct movement patterns instantly, creating a loop of immediate reinforcement that is hard to achieve in a purely asynchronous video review.&lt;br&gt;
For home‑exercise adherence, a lightweight mobile app can push daily reminders, record video snippets, and use machine learning to count repetitions and flag deviations. The app can then sync with the EHR, ensuring that adherence data is part of the patient’s longitudinal record without manual entry.&lt;br&gt;
Security is non‑negotiable. All data—video, sensor readings, and text—must be encrypted in transit (TLS) and at rest. Consent forms should explicitly state that the data will be processed by a third‑party AI provider, and the practice must have a clear data‑deletion protocol that can be invoked at the patient’s request.&lt;/p&gt;

&lt;h2&gt;
  
  
  Future‑Proofing Your Practice with Modular AI Platforms
&lt;/h2&gt;

&lt;p&gt;A modular architecture—where AI services are exposed via RESTful APIs—lets a practice swap or upgrade components without overhauling the entire system. For example, a new gait‑analysis module can be added without disrupting the existing note‑drafting service. Open standards such as HL7 FHIR and OpenAPI specifications make integration painless.&lt;br&gt;
Continuous learning is essential. The vendor should provide a transparent model‑update schedule, and the practice should retain the right to audit the model’s decision logic. If a model is fine‑tuned on your own data, you maintain ownership of that data and can enforce stricter privacy controls.&lt;br&gt;
When scaling across multiple clinics, a cost‑benefit model that tracks time saved per clinician, reduced documentation errors, and improved patient engagement can demonstrate ROI. A phased rollout—starting with a single clinic, measuring key metrics, and then expanding—minimizes risk while building a data‑driven case for broader adoption.&lt;/p&gt;

&lt;h1&gt;
  
  
  Key Takeaways
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;Use AI to draft structured notes and cut charting time by roughly 80% of composition effort.&lt;/li&gt;
&lt;li&gt;Apply phone‑camera pose estimation for consistent joint‑angle and symmetry tracking; focus on repeatability rather than single‑read precision.&lt;/li&gt;
&lt;li&gt;Employ AI‑driven adherence nudges and rep counters to flag missed home exercises, treating it as a smart scheduling tool.&lt;/li&gt;
&lt;li&gt;Verify vendor training data and exclude solutions built only on healthy adult populations when treating post‑surgical, paediatric, geriatric, or neurological patients.&lt;/li&gt;
&lt;li&gt;Demand transparent data‑processing policies—know where data is stored, who can access it, and how it can be deleted—to meet HIPAA, GDPR, or local regulations.&lt;/li&gt;
&lt;li&gt;Pilot any AI tool on a single clinician’s caseload for four weeks, measure time saved and error visibility before full clinic rollout.&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;&lt;em&gt;Originally published at &lt;a href="https://www.misar.blog/@misar-ai/articles/ai-physical-therapy-what-it-can-actually-do?utm_source=devto&amp;amp;utm_medium=syndication" rel="noopener noreferrer"&gt;https://www.misar.blog/@misar-ai/articles/ai-physical-therapy-what-it-can-actually-do&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>physicaltherapy</category>
      <category>healthcare</category>
      <category>clinicalworkflow</category>
    </item>
  </channel>
</rss>
