-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37 from amiable-dev/feature/enhance-ai-attribution
Add enhanced AI attribution support with documentation and RSS feed configuration
- Loading branch information
Showing
4 changed files
with
133 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
--- | ||
title: Your Title Here | ||
authors: [claude] | ||
tags: [tag1, tag2] | ||
description: Brief description of your post | ||
slug: your-custom-slug | ||
image: /img/your-image.png | ||
ai_generated: true | ||
ai_models: | ||
- name: "Claude 3.5 Sonnet" | ||
version: "20241022" | ||
tasks: ["content", "code"] | ||
confidence_score: 0.95 | ||
ai_tools: | ||
- name: "Anthropic Messages API" | ||
version: "2024-03" | ||
ai_review_process: "Human reviewed and edited" | ||
ai_quality_metrics: | ||
accuracy: 0.95 | ||
coherence: 0.98 | ||
technical_depth: 0.92 | ||
--- | ||
|
||
Brief introduction to your post here. | ||
|
||
<!--truncate--> | ||
|
||
## Main Content | ||
|
||
Your content here... | ||
|
||
## Code Examples | ||
|
||
```typescript | ||
// Your code here | ||
``` | ||
|
||
## Conclusion | ||
|
||
Summarize key points... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
--- | ||
title: AI Content Attribution Guidelines | ||
description: Guidelines for properly attributing AI-generated content | ||
--- | ||
|
||
# AI Content Attribution Guidelines | ||
|
||
This document outlines how to properly attribute AI-generated content in blog posts and documentation. | ||
|
||
## Author Attribution | ||
|
||
All AI-generated content should be attributed to the AI model that created it: | ||
|
||
1. Use the `authors` field in front matter: | ||
```yaml | ||
authors: [claude] | ||
``` | ||
2. Set `ai_generated: true` in front matter | ||
|
||
3. Include AI metadata: | ||
```yaml | ||
ai_models: | ||
- name: "Claude 3.5 Sonnet" | ||
version: "20241022" | ||
tasks: ["content", "code"] | ||
confidence_score: 0.95 | ||
ai_tools: | ||
- name: "Anthropic Messages API" | ||
version: "2024-03" | ||
ai_review_process: "Human reviewed and edited" | ||
``` | ||
|
||
## Quality Metrics | ||
|
||
Include quality metrics when available: | ||
```yaml | ||
ai_quality_metrics: | ||
accuracy: 0.95 | ||
coherence: 0.98 | ||
technical_depth: 0.92 | ||
``` | ||
|
||
## Review Process | ||
|
||
Specify the review process in `ai_review_process`: | ||
- "Human reviewed and edited" | ||
- "Peer reviewed" | ||
- "Technical review completed" | ||
|
||
## Tasks Attribution | ||
|
||
In the `tasks` field, specify what the AI model did: | ||
- "content" - Main content writing | ||
- "code" - Code examples | ||
- "research" - Background research | ||
- "documentation" - Documentation writing | ||
- "editing" - Content editing | ||
|
||
## Version Control | ||
|
||
Always include: | ||
1. Model version | ||
2. Tool versions | ||
3. Date of content generation | ||
|
||
## Templates | ||
|
||
Use the provided template in `.github/TEMPLATES/ai-post-template.md` for new posts. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters