* [PATCH BlueZ v1] doc: Add AI coding assistants guidelines
@ 2026-04-21 15:51 Luiz Augusto von Dentz
2026-04-21 17:39 ` [BlueZ,v1] " bluez.test.bot
2026-04-21 20:10 ` [PATCH BlueZ v1] " patchwork-bot+bluetooth
0 siblings, 2 replies; 3+ messages in thread
From: Luiz Augusto von Dentz @ 2026-04-21 15:51 UTC (permalink / raw)
To: linux-bluetooth
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
Add doc/coding-assistants.rst with guidance for AI tools contributing to
BlueZ, covering licensing compatibility, human responsibility, and the
Assisted-by attribution format. Reference the new document from the README.
Based on similar documentation from the Linux kernel:
78d979db6cef ("docs: add AI Coding Assistants documentation")
---
README | 7 ++++++
doc/coding-assistants.rst | 47 +++++++++++++++++++++++++++++++++++++++
2 files changed, 54 insertions(+)
create mode 100644 doc/coding-assistants.rst
diff --git a/README b/README
index 74221a29ca91..1da987087355 100644
--- a/README
+++ b/README
@@ -284,6 +284,13 @@ For a working system, certain configuration options need to be enabled:
The plugin is built into bluetoothd therefore it does not need
to be package separately.
+AI Coding Assistants
+====================
+
+For guidance on using AI tools when contributing to BlueZ, see:
+ doc/coding-assistants.rst
+
+
Information
===========
diff --git a/doc/coding-assistants.rst b/doc/coding-assistants.rst
new file mode 100644
index 000000000000..3a643527fd65
--- /dev/null
+++ b/doc/coding-assistants.rst
@@ -0,0 +1,47 @@
+AI Coding Assistants
+++++++++++++++++++++
+
+This document provides guidance for AI tools and developers using AI
+assistance when contributing to BlueZ.
+
+AI tools helping with BlueZ development should follow the standard
+development process:
+
+* doc/coding-style.rst
+* doc/maintainer-guidelines.rst
+
+Licensing and Legal Requirements
+================================
+
+All contributed code must be compatible with the license of the
+respective file. The daemon is licensed under GPL-2.0, while other
+parts of the project may use different licenses such as LGPL.
+Use appropriate SPDX license identifiers.
+
+The human submitter is responsible for:
+
+* Reviewing all AI-generated code
+* Ensuring compliance with licensing requirements
+* Taking full responsibility for the contribution
+
+Attribution
+===========
+
+When AI tools contribute to development, proper attribution helps track
+the evolving role of AI in the development process. Contributions should
+include an Assisted-by tag in the following format::
+
+ Assisted-by: AGENT_NAME:MODEL_VERSION [TOOL1] [TOOL2]
+
+Where:
+
+* ``AGENT_NAME`` is the name of the AI tool or framework
+* ``MODEL_VERSION`` is the specific model version used
+* ``[TOOL1] [TOOL2]`` are optional specialized analysis tools used
+ (e.g., coccinelle, sparse, smatch, clang-tidy)
+
+Basic development tools (git, gcc, make, editors) should not be listed.
+
+Example::
+
+ Assisted-by: Claude:claude-3-opus coccinelle sparse
--
2.53.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* RE: [BlueZ,v1] doc: Add AI coding assistants guidelines
2026-04-21 15:51 [PATCH BlueZ v1] doc: Add AI coding assistants guidelines Luiz Augusto von Dentz
@ 2026-04-21 17:39 ` bluez.test.bot
2026-04-21 20:10 ` [PATCH BlueZ v1] " patchwork-bot+bluetooth
1 sibling, 0 replies; 3+ messages in thread
From: bluez.test.bot @ 2026-04-21 17:39 UTC (permalink / raw)
To: linux-bluetooth, luiz.dentz
[-- Attachment #1: Type: text/plain, Size: 990 bytes --]
This is automated email and please do not reply to this email!
Dear submitter,
Thank you for submitting the patches to the linux bluetooth mailing list.
This is a CI test results with your patch series:
PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=1083932
---Test result---
Test Summary:
CheckPatch PASS 0.28 seconds
GitLint PASS 0.21 seconds
BuildEll PASS 20.06 seconds
BluezMake PASS 638.04 seconds
MakeCheck PASS 18.28 seconds
MakeDistcheck PASS 243.02 seconds
CheckValgrind PASS 290.91 seconds
CheckSmatch PASS 346.63 seconds
bluezmakeextell PASS 181.86 seconds
IncrementalBuild PASS 644.64 seconds
ScanBuild PASS 1003.11 seconds
https://github.com/bluez/bluez/pull/2060
---
Regards,
Linux Bluetooth
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH BlueZ v1] doc: Add AI coding assistants guidelines
2026-04-21 15:51 [PATCH BlueZ v1] doc: Add AI coding assistants guidelines Luiz Augusto von Dentz
2026-04-21 17:39 ` [BlueZ,v1] " bluez.test.bot
@ 2026-04-21 20:10 ` patchwork-bot+bluetooth
1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+bluetooth @ 2026-04-21 20:10 UTC (permalink / raw)
To: Luiz Augusto von Dentz; +Cc: linux-bluetooth
Hello:
This patch was applied to bluetooth/bluez.git (master)
by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>:
On Tue, 21 Apr 2026 11:51:41 -0400 you wrote:
> From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
>
> Add doc/coding-assistants.rst with guidance for AI tools contributing to
> BlueZ, covering licensing compatibility, human responsibility, and the
> Assisted-by attribution format. Reference the new document from the README.
>
> Based on similar documentation from the Linux kernel:
> 78d979db6cef ("docs: add AI Coding Assistants documentation")
>
> [...]
Here is the summary with links:
- [BlueZ,v1] doc: Add AI coding assistants guidelines
https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=9dffe61bd8b2
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-04-21 20:10 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-21 15:51 [PATCH BlueZ v1] doc: Add AI coding assistants guidelines Luiz Augusto von Dentz
2026-04-21 17:39 ` [BlueZ,v1] " bluez.test.bot
2026-04-21 20:10 ` [PATCH BlueZ v1] " patchwork-bot+bluetooth
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox