This repository has no description
1import React from 'react';
2import './ScoringMethodology.css';
3import ScoreGauge from '../UserProfile/ScoreGauge';
4import { Link } from 'react-router-dom';
5import RelatedPagesNav from '../common/RelatedPagesNav';
6
7const ScoringMethodology = () => {
8 return (
9 <main className="methodology-page">
10 <div className="alt-card">
11 <h1>The Scoring Methodology</h1>
12 <div className="methodology-page-chart">
13 <ScoreGauge score={500} />
14 </div>
15 <p>Your cred.blue score is generated based on two major categories...</p>
16 <h3>1. Bluesky Data</h3>
17 <ul className="methodology-list">
18 <li>Profile content (avatar, description, etc)</li>
19 <li>Posts, likes, lists, etc</li>
20 <li>Social graph</li>
21 <li>Labelers and moderation</li>
22 <li>etc.</li>
23 </ul>
24 <h3>2. AT Protocol Data</h3>
25 <ul className="methodology-list">
26 <li>Personal Data Server (PDS)</li>
27 <li>Third-party lexicon usage</li>
28 <li>Domain name</li>
29 <li>PLC logs</li>
30 <li>etc.</li>
31 </ul>
32 <p>
33 Separate scores are generated for each category and then combined to produce your final cred.blue score, allowing you to easily see which major category (Bluesky vs AT Proto) has the most impact on your score.
34 </p>
35 <h2>Score Ranges</h2>
36 <p>
37 For Version 1 of the scoring algorithm, there is a max score of 1,000 points. This may change in the future, or it could theoretically even be scaled down depending on feedback and usage.
38 </p>
39 <p>
40 A score between 0-300 likely indicates that an account is either very new to the network or isn't very active. A score of 300-700 is within a "healthy" range. Scores that are 700+ typically indicate accounts that have been around awhile and are very active. The different score ranges are still in early development along with the algorithm, so these details are likely to change.
41 </p>
42 <h2>How do I increase my score?</h2>
43 <p>
44 The scoring methodology is fairly complex and not all of the variables can be easily changed (for instance, an account's age), but there are some specific actions you can take that can help give you a boost:
45 </p>
46 <ol className="increase-score-list">
47 <li>Fully complete your Bluesky profile</li>
48 <li>Focus on posting things people will enjoy or find helpful</li>
49 <li>Use more of Bluesky's features</li>
50 <li>Add a custom domain name</li>
51 <li>Use a third-party PDS</li>
52 <li>Remember to add alt text to images</li>
53 <li>Add your own rotation key</li>
54 <li>Set your pronouns</li>
55 </ol>
56 <p>
57 This is not an exhaustive list by any means, but it should get you started. The goal of the cred.blue score isn't to attempt to max it out... rather, the point is to foster healthy behavior and activity that benefits the entire community.
58 </p>
59 <p>
60 With that being said, check out the <Link to="/resources">resources page</Link> and toggle the "impacts score" filter to see some third-party apps that do have an influenece.
61 </p>
62
63 {/* Replace the old definitions link with the new RelatedPagesNav component */}
64 <RelatedPagesNav currentPage="methodology" />
65 </div>
66 </main>
67 );
68};
69
70export default ScoringMethodology;