I've made a better microsummary for the Recent Activity pages that also shows you reputation change, responses, edits, and badges. It works with any Stack based site, including Stack Exchange sites.

Install my updated Microsummary here
Stack Exchange Micorsummary here
After installing the microsummary, bookmark your Recent Activity page, then right click on the bookmark, edit the properties, and choose the live title from the drop down on the name field
Updated 2010-04-02: Fixed reputation not found due to changes in SO HTML.
Updated 2009-10-29: Added messages awaiting moderator attention preceded by ♦.
Updated 2009-10-27: Made .*/users/recent/.* the only pattern in the include list so it should also work with any Stack Exchange site.
Updated 2009-10-14: Rewrote as stats table was removed and totals now appear on tabs if there are any changes. Took the opportunity to make outputs conditional so they only appear when there is a change, which should make the summaries much shorter. See bottom of post for examples.
Updated 2009-10-13: Fixed changes in the Recent Activity page breaking the XPaths. Hopefully the new XPaths I'm using should break less often.
This generator for the Recent Activity page:
<?xml version="1.0" encoding="UTF-8"?>
<generator xmlns="http://www.mozilla.org/microsummaries/0.1"
name="Microsummary for Recent Activity on Stack Overflow, Server Fault,
superuser.com, meta and any Stack Exchange site"
uri="urn:{6eb273e2-c151-4fbb-aed7-73f4b3e2227b}">
<pages>
<include>^http://.*/users/recent/.*</include>
</pages>
<template>
<transform xmlns="http://www.w3.org/1999/XSL/Transform" version="1.0">
<output method="text"/>
<template match="/">
<value-of select="id('hlinks-user')/span[@class='reputation-score']"/>
<variable name="moderator"
select="id('hlinks')/a[contains(@class, 'mod-flag-indicator')]"/>
<variable name="rep_diff" select="normalize-space(string(id('tabs')/a[2]/*))"/>
<variable name="responses" select="normalize-space(string(id('tabs')/a[3]/*))"/>
<variable name="revisions" select="normalize-space(string(id('tabs')/a[4]/*))"/>
<variable name="badges" select="normalize-space(string(id('tabs')/a[5]/*))"/>
<choose>
<when test="$rep_diff>'0'"><text>+</text><value-of select="$rep_diff"/></when>
<otherwise><value-of select="$rep_diff"/></otherwise>
</choose>
<if test="$moderator !=''"><text> ♦</text><value-of select="$moderator"/></if>
<if test="$responses !=''"><text> ✉</text><value-of select="$responses"/></if>
<if test="$revisions !=''"><text> ✄</text><value-of select="$revisions"/></if>
<if test="$badges !=''"><text> ●</text><value-of select="$badges"/></if>
</template>
</transform>
</template>
</generator>
will give a microsummarys like this:
4,402 no change
4,402+10 ✉3 +10 rep, 3 answer or comment responses
4,402 r3 ✄1 3 responses, 1 edit
4,402 b1 1 new badge
4,402+78 ✉4 ✄1 ●1 +78 rep, 4 answer or comment responses, 1 edit, 1 new badge
:-(– doncherry Sep 1 '11 at 15:23