원클릭으로
social-media-publisher-contract
Implement a common social media publisher contract without breaking existing platform managers
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Implement a common social media publisher contract without breaking existing platform managers
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Authorization Code Flow for web applications using MSAL.NET confidential client to sign in users and access APIs on their behalf
Handle MSAL distributed token cache collisions and stale entries in ASP.NET Core applications
On-Behalf-Of (OBO) Flow for web APIs to call downstream APIs while preserving user identity in MSAL.NET
{what this skill teaches agents}
Review API DTO implementations for contract/domain separation, mapping patterns, and REST compliance
This skill should be used when the user asks to "build a feature", "fix a bug", "implement something", "start a dev cycle", types "/dev", or describes a software task that requires design, implementation, testing, and shipping. Orchestrates the full software development lifecycle from interrogation through shipping, with self-learning that improves over time.
SOC 직업 분류 기준
| name | social-media-publisher-contract |
| description | Implement a common social media publisher contract without breaking existing platform managers |
| domain | api-design |
| confidence | high |
| source | earned |
| tools | [{"name":"powershell","description":"Build and test the JJGNet Broadcasting solution","when":"After updating shared publisher contracts or DI registrations"}] |
Use this pattern when multiple platform-specific managers need a common contract for routing or contract testing, but existing function handlers or callers still depend on platform-specific methods.
JosephGuadagno.Broadcasting.Domain\Interfaces so all manager projects can depend on it without introducing upward references.SocialMediaPublishRequest in JosephGuadagno.Broadcasting.Domain\Models to normalize shared inputs like text, links, images, access tokens, and hashtags.ISocialMediaPublisher so future code can resolve IEnumerable<ISocialMediaPublisher> while current code keeps using the existing interfaces.PublishAsync routing or guard path per platform manager.Functions\Program.cs and Functions.Tests\Startup.cs in sync whenever shared publisher registrations change.src\JosephGuadagno.Broadcasting.Domain\Interfaces\ISocialMediaPublisher.cssrc\JosephGuadagno.Broadcasting.Domain\Models\SocialMediaPublishRequest.cssrc\JosephGuadagno.Broadcasting.Functions\Program.cssrc\JosephGuadagno.Broadcasting.Managers.Twitter.Tests\TwitterManagerTests.cssrc\JosephGuadagno.Broadcasting.Managers.LinkedIn.Tests\LinkedInManagerUnitTests.csISocialMediaPublisher; map the shared registration back to the existing interface registration.