adding-release-notes

द्वारा flutter

उपयोगकर्ता-सामना करने वाले परिवर्तन विवरणों को DevTools रिलीज़ नोट्स में जोड़ता है। NEXT_RELEASE_NOTES.md फ़ाइल में सुधार, सुधार या नई सुविधाओं का दस्तावेज़ीकरण करते समय उपयोग करें।

npx skills add https://github.com/flutter/devtools --skill adding-release-notes

Adding Release Notes

This skill helps automate adding release notes to packages/devtools_app/release_notes/NEXT_RELEASE_NOTES.md.

Workflow

Copy this checklist into your response to track progress:

Release Notes Progress:
- [ ] Step 1: Formulate the entry (past tense)
- [ ] Step 2: Find the PR number (if not already known)
- [ ] Step 3: Determine the section (Inspector, Memory, etc.)
- [ ] Step 4: Add the entry (use scripts/add_note.dart)
- [ ] Step 5: Add images (if applicable)

Guidelines

1. Identify the PR Number

If the PR number is unknown, use the following methods to find it:

  • Local Branch: Identify the branch name using git branch or git log. If the branch is pushed to origin, it often has a linked PR.
  • GitHub CLI (gh): Use the GitHub CLI to find the PR associated with the current branch.
    • IMPORTANT: Always use PAGER=cat to prevent gh from hanging in non-interactive terminals.
    • Command: PAGER=cat gh pr list --head <branch_name> --json number,title
  • Search by Change Description: Search open PRs using keywords from your change title or description.
    • Command: PAGER=cat gh pr list --search "<keywords>" --limit 5
  • Web Search: If CLI tools fail, use search_web to find the PR on GitHub:
    • Query: site:github.com/flutter/devtools "Add support for searching within the log details view"

2. Formulate the Entry

  • Tense: Always use past tense (e.g., "Added", "Improved", "Fixed").
  • Punctuation: Always end entries with a period.
  • Template: * <Description>. [#<PR_NUMBER>](https://github.com/flutter/devtools/pull/<PR_NUMBER>)
  • Placeholder: Use TODO if you have exhausted all search methods and the PR has not been created yet.
  • Images: If adding an image, indent it by two spaces to align with the bullet point, and ensure there is only one newline between the text and the image.
    • Correct Format:
      - Added support for XYZ. [#TODO](https://github.com/flutter/devtools/pull/TODO)
        ![](images/my_feature.png)
      
  • Examples:
    • * Added support for XYZ. [#12345](https://github.com/flutter/devtools/pull/12345)
    • * Fixed a crash in the ABC screen. [#67890](https://github.com/flutter/devtools/pull/67890)

3. User-Facing Changes Only

  • Criteria: Focus on what changed for the user, not how it was implemented.
  • Avoid: Technical details like "Implemented XYZ with a new controller", "Updated the build method", or naming internal classes.
  • Example (Bad): * Implemented log details search using SearchControllerMixin. [#TODO](https://github.com/flutter/devtools/pull/TODO)
  • Example (Good): * Added search support to the log details view. [#TODO](https://github.com/flutter/devtools/pull/TODO)

4. Determine Section

Match the change to the section in NEXT_RELEASE_NOTES.md:

  • General updates
  • Inspector updates
  • Performance updates
  • CPU profiler updates
  • Memory updates
  • Debugger updates
  • Network profiler updates
  • Logging updates
  • App size tool updates
  • Deep links tool updates
  • VS Code sidebar updates
  • DevTools extension updates
  • Advanced developer mode updates

5. Add to NEXT_RELEASE_NOTES.md

Use the provided utility script to insert the note safely. The script handles replacing the TODO placeholder if it's the first entry in that section.

dart .agents/skills/adding-release-notes/scripts/add_note.dart "Inspector updates" "Added XYZ support" TODO

6. Optional: Images

Add images to packages/devtools_app/release_notes/images/ and reference them:

![Accessible description](images/screenshot.png "Hover description")

Constraint: Use dark mode for screenshots.

Resources

flutter की और Skills

dart-modern-features
flutter
आधुनिकीकरण के लिए उम्मीदवार खोजने हेतु:
official
genui-helper
flutter
यह कौशल genui रिपॉजिटरी के लिए विशिष्ट वर्कफ़्लो और सर्वोत्तम प्रथाएँ प्रदान करता है।
official
add-dart-lint-validation-rule
flutter
dart_skills_lint में एक नया सत्यापन नियम और CLI फ्लैग जोड़ने के निर्देश।
official
grill-with-docs
flutter
ग्रिलिंग सत्र जो आपकी योजना को मौजूदा डोमेन मॉडल के विरुद्ध चुनौती देता है, शब्दावली को स्पष्ट करता है, और दस्तावेज़ीकरण (CONTEXT.md, ADRs) को इनलाइन अपडेट करता है...
official
analyze-github-flake
flutter
फ्लटर/फ्लटर रिपॉजिटरी में फ्लेक गिटहब मुद्दों के विश्लेषण में विशेषज्ञता। तब उपयोग करें जब कोई उपयोगकर्ता फ्लटर के किसी विशिष्ट लिंक की अस्थिरता का विश्लेषण करना चाहता है…
official
flutter-cherry-pick
flutter
फ्लटर/फ्लटर रिपॉजिटरी के स्थिर या बीटा चैनल के लिए किसी मर्ज किए गए PR की औपचारिक चेरी-पिक कैसे करें। केवल फ्लटर/फ्लटर में लैंड किए गए पुल रिक्वेस्ट के लिए उपयोग करें। केवल…
official
rebuilding-flutter-tool
flutter
फ्लटर टूल और CLI को पुनर्निर्माण करता है। इसका उपयोग तब करें जब कोई उपयोगकर्ता फ्लटर टूल या CLI को संकलित, अद्यतन, पुनर्जीवित या पुनर्निर्माण करने के लिए कहे।
official
upgrade-browser
flutter
Flutter वेब इंजन और/या फ्रेमवर्क परीक्षणों में ब्राउज़र संस्करणों (Chrome या Firefox) को अपग्रेड करें। जब Chrome या Firefox को नए संस्करण में रोल या अपग्रेड करने के लिए कहा जाए तो इसका उपयोग करें।
official