<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://ohcnwiki.tellmey.fyi/index.php?action=history&amp;feed=atom&amp;title=Contributing%2FPlugin_development_cycle</id>
	<title>Contributing/Plugin development cycle - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://ohcnwiki.tellmey.fyi/index.php?action=history&amp;feed=atom&amp;title=Contributing%2FPlugin_development_cycle"/>
	<link rel="alternate" type="text/html" href="https://ohcnwiki.tellmey.fyi/index.php?title=Contributing/Plugin_development_cycle&amp;action=history"/>
	<updated>2026-07-09T14:01:01Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.45.4</generator>
	<entry>
		<id>https://ohcnwiki.tellmey.fyi/index.php?title=Contributing/Plugin_development_cycle&amp;diff=595&amp;oldid=prev</id>
		<title>Admin: Create Plugin development cycle guide (via create-page on MediaWiki MCP Server)</title>
		<link rel="alternate" type="text/html" href="https://ohcnwiki.tellmey.fyi/index.php?title=Contributing/Plugin_development_cycle&amp;diff=595&amp;oldid=prev"/>
		<updated>2026-07-09T10:05:47Z</updated>

		<summary type="html">&lt;p&gt;Create Plugin development cycle guide (via create-page on MediaWiki MCP Server)&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{Doc header&lt;br /&gt;
|type=guide&lt;br /&gt;
|domain=contributing&lt;br /&gt;
|title=Plugin development cycle&lt;br /&gt;
|order=4&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
All CARE plugins follow a &amp;#039;&amp;#039;&amp;#039;shared development cycle&amp;#039;&amp;#039;&amp;#039; to keep the ecosystem predictable and reviewable. Every plugin repository must use the &amp;lt;code&amp;gt;develop&amp;lt;/code&amp;gt; branch as its integration branch.&lt;br /&gt;
&lt;br /&gt;
== Branching model ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
main          ─────── (tagged releases only)&lt;br /&gt;
                    ╱&lt;br /&gt;
develop       ───────────── (integration branch)&lt;br /&gt;
              ╱  │  ╲&lt;br /&gt;
feature/foo   ─   │   ─── feature/bar&lt;br /&gt;
                  │&lt;br /&gt;
fix/bug-123    ───&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
; &amp;lt;code&amp;gt;main&amp;lt;/code&amp;gt; : Tagged releases only. Merged from &amp;lt;code&amp;gt;develop&amp;lt;/code&amp;gt; when cutting a release.&lt;br /&gt;
; &amp;lt;code&amp;gt;develop&amp;lt;/code&amp;gt; : Default integration branch. &amp;#039;&amp;#039;&amp;#039;All&amp;#039;&amp;#039;&amp;#039; features and fixes merge here after review. Must exist in every plugin repo.&lt;br /&gt;
; &amp;lt;code&amp;gt;feature/&amp;amp;lt;name&amp;amp;gt;&amp;lt;/code&amp;gt; : Branch off &amp;lt;code&amp;gt;develop&amp;lt;/code&amp;gt; for new features.&lt;br /&gt;
; &amp;lt;code&amp;gt;fix/&amp;amp;lt;description&amp;amp;gt;&amp;lt;/code&amp;gt; : Branch off &amp;lt;code&amp;gt;develop&amp;lt;/code&amp;gt; for bug fixes.&lt;br /&gt;
; &amp;lt;code&amp;gt;chore/&amp;amp;lt;description&amp;amp;gt;&amp;lt;/code&amp;gt; : Branch off &amp;lt;code&amp;gt;develop&amp;lt;/code&amp;gt; for maintenance tasks.&lt;br /&gt;
&lt;br /&gt;
== Creating the develop branch ==&lt;br /&gt;
&lt;br /&gt;
If a plugin repository does not yet have a &amp;lt;code&amp;gt;develop&amp;lt;/code&amp;gt; branch, create it from the current state of &amp;lt;code&amp;gt;main&amp;lt;/code&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;git checkout main&lt;br /&gt;
git pull origin main&lt;br /&gt;
git checkout -b develop&lt;br /&gt;
git push origin develop&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then set &amp;lt;code&amp;gt;develop&amp;lt;/code&amp;gt; as the default branch in the repository settings on GitHub (Settings → Branches → Default branch).&lt;br /&gt;
&lt;br /&gt;
== Workflow ==&lt;br /&gt;
&lt;br /&gt;
# &amp;#039;&amp;#039;&amp;#039;Branch&amp;#039;&amp;#039;&amp;#039;: Create a feature/fix/chore branch from &amp;lt;code&amp;gt;develop&amp;lt;/code&amp;gt;.&lt;br /&gt;
# &amp;#039;&amp;#039;&amp;#039;Build&amp;#039;&amp;#039;&amp;#039;: Implement your changes on that branch.&lt;br /&gt;
# &amp;#039;&amp;#039;&amp;#039;Review&amp;#039;&amp;#039;&amp;#039;: Open a Pull Request targeting &amp;lt;code&amp;gt;develop&amp;lt;/code&amp;gt;.&lt;br /&gt;
# &amp;#039;&amp;#039;&amp;#039;Merge&amp;#039;&amp;#039;&amp;#039;: After approval, squash-merge into &amp;lt;code&amp;gt;develop&amp;lt;/code&amp;gt;.&lt;br /&gt;
# &amp;#039;&amp;#039;&amp;#039;Release&amp;#039;&amp;#039;&amp;#039;: When ready, merge &amp;lt;code&amp;gt;develop&amp;lt;/code&amp;gt; into &amp;lt;code&amp;gt;main&amp;lt;/code&amp;gt; and tag the release.&lt;br /&gt;
&lt;br /&gt;
== Commit conventions ==&lt;br /&gt;
&lt;br /&gt;
Use semantic commit prefixes for changelog generation:&lt;br /&gt;
&lt;br /&gt;
; &amp;lt;code&amp;gt;feat:&amp;lt;/code&amp;gt; : A new feature&lt;br /&gt;
; &amp;lt;code&amp;gt;fix:&amp;lt;/code&amp;gt; : A bug fix&lt;br /&gt;
; &amp;lt;code&amp;gt;chore:&amp;lt;/code&amp;gt; : Maintenance or tooling&lt;br /&gt;
; &amp;lt;code&amp;gt;docs:&amp;lt;/code&amp;gt; : Documentation changes&lt;br /&gt;
; &amp;lt;code&amp;gt;refactor:&amp;lt;/code&amp;gt; : Code restructuring&lt;br /&gt;
; &amp;lt;code&amp;gt;test:&amp;lt;/code&amp;gt; : Adding or fixing tests&lt;br /&gt;
; &amp;lt;code&amp;gt;perf:&amp;lt;/code&amp;gt; : Performance improvements&lt;br /&gt;
&lt;br /&gt;
Example: &amp;lt;code&amp;gt;feat: add discharge summary endpoint&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Review requirements ==&lt;br /&gt;
&lt;br /&gt;
- At least &amp;#039;&amp;#039;&amp;#039;one approval&amp;#039;&amp;#039;&amp;#039; from a maintainer before merging.&lt;br /&gt;
- All CI checks must pass.&lt;br /&gt;
- The branch must be up to date with &amp;lt;code&amp;gt;develop&amp;lt;/code&amp;gt; (rebased or merged).&lt;br /&gt;
&lt;br /&gt;
== Plugin lifecycle ==&lt;br /&gt;
&lt;br /&gt;
; Experimental : New plugin in active development. May break between commits.&lt;br /&gt;
; Stable : Ready for production use. Follows the full development cycle.&lt;br /&gt;
; Deprecated : Replaced or superseded. No active development.&lt;br /&gt;
&lt;br /&gt;
{{Navbox contributing}}&lt;br /&gt;
&lt;br /&gt;
{{Related}}&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
</feed>