<?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: Silas L. Pascoal</title>
    <description>The latest articles on DEV Community by Silas L. Pascoal (@slpascoal).</description>
    <link>https://dev.to/slpascoal</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%2F1406625%2F9e744d8f-8435-4ec3-9037-35ddf63483a9.png</url>
      <title>DEV Community: Silas L. Pascoal</title>
      <link>https://dev.to/slpascoal</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/slpascoal"/>
    <language>en</language>
    <item>
      <title>oh-my-sdd</title>
      <dc:creator>Silas L. Pascoal</dc:creator>
      <pubDate>Sun, 05 Jul 2026 18:22:30 +0000</pubDate>
      <link>https://dev.to/slpascoal/oh-my-sdd-23m5</link>
      <guid>https://dev.to/slpascoal/oh-my-sdd-23m5</guid>
      <description>&lt;p&gt;This is a post about: &lt;a href="https://www.npmjs.com/package/oh-my-sdd" rel="noopener noreferrer"&gt;https://www.npmjs.com/package/oh-my-sdd&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A set of global Claude Code skills that rigorously enforce &lt;strong&gt;Spec-Driven Development (SDD)&lt;/strong&gt;: before implementing any task, Claude analyzes the project, generates &lt;code&gt;constitution.md → spec.md → plan.md → tasks.md&lt;/code&gt;, with mandatory human validation before implementation is allowed to start.&lt;/p&gt;

&lt;p&gt;📖 &lt;strong&gt;Documentation&lt;/strong&gt;: &lt;a href="https://slpascoal.github.io/oh-my-sdd/" rel="noopener noreferrer"&gt;https://slpascoal.github.io/oh-my-sdd/&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Installation
&lt;/h2&gt;

&lt;p&gt;&lt;code&gt;npx oh-my-sdd install&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;This installs the 6 skills globally in &lt;code&gt;~/.claude/skills/&lt;/code&gt;, available in any project opened in Claude Code — installation does not depend on the directory the command is run from.&lt;/p&gt;

&lt;h2&gt;
  
  
  Architecture
&lt;/h2&gt;

&lt;p&gt;An orchestrator skill (&lt;code&gt;oh-my-sdd&lt;/code&gt;) activates, in sequence, 5 specialized skills — one per SDD phase:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;/oh-my-sdd: Orchestrates the flow, identifies the input (free text or Jira) and activates the others in order&lt;/li&gt;
&lt;li&gt;/oh-my-sdd-constitution: Analyzes the project (stack, conventions, lint) and generates/confirms .oh-my-sdd/constitution.md, asking the user only what it can't infer&lt;/li&gt;
&lt;li&gt;/oh-my-sdd-specify: Generates spec.md in EARS/GEARS — human checkpoint #1&lt;/li&gt;
&lt;li&gt;/oh-my-sdd-plan: Translates the validated spec into technical decisions (plan.md)&lt;/li&gt;
&lt;li&gt;/oh-my-sdd-tasks:  the plan into atomic tasks (tasks.md) — human checkpoint #2&lt;/li&gt;
&lt;li&gt;/oh-my-sdd-implement: Implements task by task, only after both checkpoints are confirmed&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Each installed skill is self-contained: it gets its own copy of &lt;code&gt;knowledge/&lt;/code&gt;, the SDD knowledge base (maturity levels, EARS/GEARS syntax, artifact hierarchy, practical examples) that underpins how each phase generates its document.&lt;/p&gt;

&lt;h2&gt;
  
  
  Usage
&lt;/h2&gt;

&lt;p&gt;Once installed, the flow is automatically discovered by Claude Code whenever a task should be specified before being implemented. It can also be invoked directly:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;/oh-my-sdd "add a logout endpoint that invalidates the refresh token"
/oh-my-sdd PROJ-123
/oh-my-sdd https://company.atlassian.net/browse/PROJ-123
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Other commands
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx oh-my-sdd status      &lt;span class="c"&gt;# shows which of the 6 skills are installed and whether any file was manually modified&lt;/span&gt;
npx oh-my-sdd uninstall   &lt;span class="c"&gt;# removes the 6 skills from ~/.claude/skills/&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Knowledge base
&lt;/h2&gt;

&lt;p&gt;The &lt;code&gt;knowledge/&lt;/code&gt; folder documents the SDD fundamentals used by every skill: maturity levels (spec-first, spec-anchored, spec-as-source), best practices for writing specs and constitutions, EARS/GEARS syntax, and complete practical examples.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>claude</category>
      <category>development</category>
      <category>sdd</category>
    </item>
    <item>
      <title>Jr Project #01: API Travel Manager</title>
      <dc:creator>Silas L. Pascoal</dc:creator>
      <pubDate>Sat, 16 Nov 2024 05:32:21 +0000</pubDate>
      <link>https://dev.to/slpascoal/jr-project-01-api-travel-manager-3c13</link>
      <guid>https://dev.to/slpascoal/jr-project-01-api-travel-manager-3c13</guid>
      <description>&lt;p&gt;I'm excited to share the completion of one of my latest projects: the Travel Manager API, designed to manage corporate travel requests!  &lt;/p&gt;

&lt;p&gt;👉 Key Features: &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Full CRUD for travel orders.
&lt;/li&gt;
&lt;li&gt;Secure authentication: Laravel Sanctum with Bearer Token.
&lt;/li&gt;
&lt;li&gt;Robust documentation: Developed with Swagger, allowing easy understanding and use of endpoints.
&lt;/li&gt;
&lt;li&gt;Permissions control: Only authenticated users can manage trips.
&lt;/li&gt;
&lt;li&gt;Validations and clear responses: Avoid inconsistencies in the database and improve the user experience.
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;🛠 Technologies Used: &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Backend: Laravel.
&lt;/li&gt;
&lt;li&gt;Containerization: Docker with Laravel Sail.
&lt;/li&gt;
&lt;li&gt;Database: MySQL.
&lt;/li&gt;
&lt;li&gt;Automated Tests: PHPUnit.
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;📝 Documentation and Testing:&lt;br&gt;&lt;br&gt;
Documentation is available on Swagger: (&lt;a href="http://localhost/api/documentation" rel="noopener noreferrer"&gt;http://localhost/api/documentation&lt;/a&gt;). &lt;br&gt;
To ensure quality, I implemented automated tests with PHPUnit.  &lt;/p&gt;

&lt;p&gt;I'm a Junior Dev and I'm proud of what I've been able to achieve with this application! In fact, I accept opinions and suggestions to continue evolving. &lt;/p&gt;

&lt;p&gt;🌟  GitHub: &lt;a href="https://lnkd.in/dYf64Fwk" rel="noopener noreferrer"&gt;https://lnkd.in/dYf64Fwk&lt;/a&gt;&lt;/p&gt;

</description>
      <category>laravel</category>
      <category>jr</category>
      <category>portfolio</category>
      <category>github</category>
    </item>
  </channel>
</rss>
